Find zero or one Wallet
// Get one Wallet
const wallet = await prisma.wallet.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletWhereUniqueInput | Yes |
Find first Wallet
// Get one Wallet
const wallet = await prisma.wallet.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletWhereInput | No |
| orderBy | WalletOrderByWithRelationInput[] | WalletOrderByWithRelationInput | No |
| cursor | WalletWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | WalletScalarFieldEnum[] | No |
Find zero or more Wallet
// Get all Wallet
const Wallet = await prisma.wallet.findMany()
// Get first 10 Wallet
const Wallet = await prisma.wallet.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | WalletWhereInput | No |
| orderBy | WalletOrderByWithRelationInput[] | WalletOrderByWithRelationInput | No |
| cursor | WalletWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | WalletScalarFieldEnum[] | No |
Create one Wallet
// Create one Wallet
const Wallet = await prisma.wallet.create({
data: {
// ... data to create a Wallet
}
})
| Name | Type | Required |
|---|---|---|
| data | WalletCreateInput | WalletUncheckedCreateInput | Yes |
Delete one Wallet
// Delete one Wallet
const Wallet = await prisma.wallet.delete({
where: {
// ... filter to delete one Wallet
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletWhereUniqueInput | Yes |
Update one Wallet
// Update one Wallet
const wallet = await prisma.wallet.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | WalletUpdateInput | WalletUncheckedUpdateInput | Yes |
| where | WalletWhereUniqueInput | Yes |
Delete zero or more Wallet
// Delete a few Wallet
const { count } = await prisma.wallet.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletWhereInput | No |
Update zero or one Wallet
const { count } = await prisma.wallet.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | WalletUpdateManyMutationInput | WalletUncheckedUpdateManyInput | Yes |
| where | WalletWhereInput | No |
Create or update one Wallet
// Update or create a Wallet
const wallet = await prisma.wallet.upsert({
create: {
// ... data to create a Wallet
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Wallet we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletWhereUniqueInput | Yes |
| create | WalletCreateInput | WalletUncheckedCreateInput | Yes |
| update | WalletUpdateInput | WalletUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| realmId | Int |
|
Yes | - |
| name | String? |
|
No | - |
| wallet | Wallet? |
|
No | - |
| owner | String? |
|
No | - |
| bridgedOwner | String? |
|
No | - |
| ownerL2 | String? |
|
No | - |
| walletL2 | Wallet? |
|
No | - |
| settledOwner | String? |
|
No | - |
| walletSettled | Wallet? |
|
No | - |
| wonder | String? |
|
No | - |
| rarityRank | Int |
|
Yes | - |
| rarityScore | Float |
|
Yes | - |
| imageUrl | String |
|
Yes | - |
| relic | Relic? |
|
No | - |
| orderType | OrderType? |
|
No | - |
| buildings | Building[] |
|
Yes | - |
| resources | Resource[] |
|
Yes | - |
| relicsOwned | Relic[] |
|
Yes | - |
| traits | RealmTrait[] |
|
Yes | - |
| squad | Troop[] |
|
Yes | - |
| lastAttacked | DateTime? |
|
No | - |
| lastClaimTime | DateTime? |
|
No | - |
| lastTick | DateTime? |
|
No | - |
| lastVaultTime | DateTime? |
|
No | - |
| longitude | Float |
|
Yes | - |
| latitude | Float |
|
Yes | - |
| ownArmies | Army[] |
|
Yes | - |
Find zero or one Realm
// Get one Realm
const realm = await prisma.realm.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmWhereUniqueInput | Yes |
Find first Realm
// Get one Realm
const realm = await prisma.realm.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmWhereInput | No |
| orderBy | RealmOrderByWithRelationInput[] | RealmOrderByWithRelationInput | No |
| cursor | RealmWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RealmScalarFieldEnum[] | No |
Find zero or more Realm
// Get all Realm
const Realm = await prisma.realm.findMany()
// Get first 10 Realm
const Realm = await prisma.realm.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RealmWhereInput | No |
| orderBy | RealmOrderByWithRelationInput[] | RealmOrderByWithRelationInput | No |
| cursor | RealmWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RealmScalarFieldEnum[] | No |
Create one Realm
// Create one Realm
const Realm = await prisma.realm.create({
data: {
// ... data to create a Realm
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmCreateInput | RealmUncheckedCreateInput | Yes |
Delete one Realm
// Delete one Realm
const Realm = await prisma.realm.delete({
where: {
// ... filter to delete one Realm
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmWhereUniqueInput | Yes |
Update one Realm
// Update one Realm
const realm = await prisma.realm.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmUpdateInput | RealmUncheckedUpdateInput | Yes |
| where | RealmWhereUniqueInput | Yes |
Delete zero or more Realm
// Delete a few Realm
const { count } = await prisma.realm.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmWhereInput | No |
Update zero or one Realm
const { count } = await prisma.realm.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmUpdateManyMutationInput | RealmUncheckedUpdateManyInput | Yes |
| where | RealmWhereInput | No |
Create or update one Realm
// Update or create a Realm
const realm = await prisma.realm.upsert({
create: {
// ... data to create a Realm
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Realm we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmWhereUniqueInput | Yes |
| create | RealmCreateInput | RealmUncheckedCreateInput | Yes |
| update | RealmUpdateInput | RealmUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| buildingId | Int |
|
Yes | - |
| realmId | Int? |
|
No | - |
| eventId | String |
|
Yes | - |
| buildingIntegrity | Int |
|
Yes | - |
| realm | Realm? |
|
No | - |
| builds | String[] |
|
Yes | - |
Find zero or one Building
// Get one Building
const building = await prisma.building.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingWhereUniqueInput | Yes |
Find first Building
// Get one Building
const building = await prisma.building.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingWhereInput | No |
| orderBy | BuildingOrderByWithRelationInput[] | BuildingOrderByWithRelationInput | No |
| cursor | BuildingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BuildingScalarFieldEnum[] | No |
Find zero or more Building
// Get all Building
const Building = await prisma.building.findMany()
// Get first 10 Building
const Building = await prisma.building.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BuildingWhereInput | No |
| orderBy | BuildingOrderByWithRelationInput[] | BuildingOrderByWithRelationInput | No |
| cursor | BuildingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BuildingScalarFieldEnum[] | No |
Create one Building
// Create one Building
const Building = await prisma.building.create({
data: {
// ... data to create a Building
}
})
| Name | Type | Required |
|---|---|---|
| data | BuildingCreateInput | BuildingUncheckedCreateInput | Yes |
Delete one Building
// Delete one Building
const Building = await prisma.building.delete({
where: {
// ... filter to delete one Building
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingWhereUniqueInput | Yes |
Update one Building
// Update one Building
const building = await prisma.building.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BuildingUpdateInput | BuildingUncheckedUpdateInput | Yes |
| where | BuildingWhereUniqueInput | Yes |
Delete zero or more Building
// Delete a few Building
const { count } = await prisma.building.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingWhereInput | No |
Update zero or one Building
const { count } = await prisma.building.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BuildingUpdateManyMutationInput | BuildingUncheckedUpdateManyInput | Yes |
| where | BuildingWhereInput | No |
Create or update one Building
// Update or create a Building
const building = await prisma.building.upsert({
create: {
// ... data to create a Building
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Building we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingWhereUniqueInput | Yes |
| create | BuildingCreateInput | BuildingUncheckedCreateInput | Yes |
| update | BuildingUpdateInput | BuildingUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| realmId | Int |
|
Yes | - |
| buildingId | Int |
|
Yes | - |
| eventId | String |
|
Yes | - |
| qty | Int |
|
Yes | - |
| harvests | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
Find zero or one Food
// Get one Food
const food = await prisma.food.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FoodWhereUniqueInput | Yes |
Find first Food
// Get one Food
const food = await prisma.food.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FoodWhereInput | No |
| orderBy | FoodOrderByWithRelationInput[] | FoodOrderByWithRelationInput | No |
| cursor | FoodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FoodScalarFieldEnum[] | No |
Find zero or more Food
// Get all Food
const Food = await prisma.food.findMany()
// Get first 10 Food
const Food = await prisma.food.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FoodWhereInput | No |
| orderBy | FoodOrderByWithRelationInput[] | FoodOrderByWithRelationInput | No |
| cursor | FoodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FoodScalarFieldEnum[] | No |
Create one Food
// Create one Food
const Food = await prisma.food.create({
data: {
// ... data to create a Food
}
})
| Name | Type | Required |
|---|---|---|
| data | FoodCreateInput | FoodUncheckedCreateInput | Yes |
Delete one Food
// Delete one Food
const Food = await prisma.food.delete({
where: {
// ... filter to delete one Food
}
})
| Name | Type | Required |
|---|---|---|
| where | FoodWhereUniqueInput | Yes |
Update one Food
// Update one Food
const food = await prisma.food.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FoodUpdateInput | FoodUncheckedUpdateInput | Yes |
| where | FoodWhereUniqueInput | Yes |
Delete zero or more Food
// Delete a few Food
const { count } = await prisma.food.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FoodWhereInput | No |
Update zero or one Food
const { count } = await prisma.food.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FoodUpdateManyMutationInput | FoodUncheckedUpdateManyInput | Yes |
| where | FoodWhereInput | No |
Create or update one Food
// Update or create a Food
const food = await prisma.food.upsert({
create: {
// ... data to create a Food
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Food we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FoodWhereUniqueInput | Yes |
| create | FoodCreateInput | FoodUncheckedCreateInput | Yes |
| update | FoodUpdateInput | FoodUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one Relic
// Get one Relic
const relic = await prisma.relic.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RelicWhereUniqueInput | Yes |
Find first Relic
// Get one Relic
const relic = await prisma.relic.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RelicWhereInput | No |
| orderBy | RelicOrderByWithRelationInput[] | RelicOrderByWithRelationInput | No |
| cursor | RelicWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RelicScalarFieldEnum[] | No |
Find zero or more Relic
// Get all Relic
const Relic = await prisma.relic.findMany()
// Get first 10 Relic
const Relic = await prisma.relic.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RelicWhereInput | No |
| orderBy | RelicOrderByWithRelationInput[] | RelicOrderByWithRelationInput | No |
| cursor | RelicWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RelicScalarFieldEnum[] | No |
Create one Relic
// Create one Relic
const Relic = await prisma.relic.create({
data: {
// ... data to create a Relic
}
})
| Name | Type | Required |
|---|---|---|
| data | RelicCreateInput | RelicUncheckedCreateInput | Yes |
Delete one Relic
// Delete one Relic
const Relic = await prisma.relic.delete({
where: {
// ... filter to delete one Relic
}
})
| Name | Type | Required |
|---|---|---|
| where | RelicWhereUniqueInput | Yes |
Update one Relic
// Update one Relic
const relic = await prisma.relic.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RelicUpdateInput | RelicUncheckedUpdateInput | Yes |
| where | RelicWhereUniqueInput | Yes |
Delete zero or more Relic
// Delete a few Relic
const { count } = await prisma.relic.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RelicWhereInput | No |
Update zero or one Relic
const { count } = await prisma.relic.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RelicUpdateManyMutationInput | RelicUncheckedUpdateManyInput | Yes |
| where | RelicWhereInput | No |
Create or update one Relic
// Update or create a Relic
const relic = await prisma.relic.upsert({
create: {
// ... data to create a Relic
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Relic we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RelicWhereUniqueInput | Yes |
| create | RelicCreateInput | RelicUncheckedCreateInput | Yes |
| update | RelicUpdateInput | RelicUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| buildingId | Int |
|
Yes | - |
| traitType | RealmTraitType |
|
Yes | - |
| max | Int |
|
Yes | - |
Find zero or one BuildingRealmTraitConstraint
// Get one BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingRealmTraitConstraintWhereUniqueInput | Yes |
Find first BuildingRealmTraitConstraint
// Get one BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingRealmTraitConstraintWhereInput | No |
| orderBy | BuildingRealmTraitConstraintOrderByWithRelationInput[] | BuildingRealmTraitConstraintOrderByWithRelationInput | No |
| cursor | BuildingRealmTraitConstraintWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BuildingRealmTraitConstraintScalarFieldEnum[] | No |
Find zero or more BuildingRealmTraitConstraint
// Get all BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findMany()
// Get first 10 BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BuildingRealmTraitConstraintWhereInput | No |
| orderBy | BuildingRealmTraitConstraintOrderByWithRelationInput[] | BuildingRealmTraitConstraintOrderByWithRelationInput | No |
| cursor | BuildingRealmTraitConstraintWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BuildingRealmTraitConstraintScalarFieldEnum[] | No |
Create one BuildingRealmTraitConstraint
// Create one BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.create({
data: {
// ... data to create a BuildingRealmTraitConstraint
}
})
| Name | Type | Required |
|---|---|---|
| data | BuildingRealmTraitConstraintCreateInput | BuildingRealmTraitConstraintUncheckedCreateInput | Yes |
Delete one BuildingRealmTraitConstraint
// Delete one BuildingRealmTraitConstraint
const BuildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.delete({
where: {
// ... filter to delete one BuildingRealmTraitConstraint
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingRealmTraitConstraintWhereUniqueInput | Yes |
Update one BuildingRealmTraitConstraint
// Update one BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BuildingRealmTraitConstraintUpdateInput | BuildingRealmTraitConstraintUncheckedUpdateInput | Yes |
| where | BuildingRealmTraitConstraintWhereUniqueInput | Yes |
Delete zero or more BuildingRealmTraitConstraint
// Delete a few BuildingRealmTraitConstraint
const { count } = await prisma.buildingRealmTraitConstraint.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingRealmTraitConstraintWhereInput | No |
Update zero or one BuildingRealmTraitConstraint
const { count } = await prisma.buildingRealmTraitConstraint.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BuildingRealmTraitConstraintUpdateManyMutationInput | BuildingRealmTraitConstraintUncheckedUpdateManyInput | Yes |
| where | BuildingRealmTraitConstraintWhereInput | No |
Create or update one BuildingRealmTraitConstraint
// Update or create a BuildingRealmTraitConstraint
const buildingRealmTraitConstraint = await prisma.buildingRealmTraitConstraint.upsert({
create: {
// ... data to create a BuildingRealmTraitConstraint
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BuildingRealmTraitConstraint we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BuildingRealmTraitConstraintWhereUniqueInput | Yes |
| create | BuildingRealmTraitConstraintCreateInput | BuildingRealmTraitConstraintUncheckedCreateInput | Yes |
| update | BuildingRealmTraitConstraintUpdateInput | BuildingRealmTraitConstraintUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one Resource
// Get one Resource
const resource = await prisma.resource.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereUniqueInput | Yes |
Find first Resource
// Get one Resource
const resource = await prisma.resource.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereInput | No |
| orderBy | ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput | No |
| cursor | ResourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ResourceScalarFieldEnum[] | No |
Find zero or more Resource
// Get all Resource
const Resource = await prisma.resource.findMany()
// Get first 10 Resource
const Resource = await prisma.resource.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereInput | No |
| orderBy | ResourceOrderByWithRelationInput[] | ResourceOrderByWithRelationInput | No |
| cursor | ResourceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ResourceScalarFieldEnum[] | No |
Create one Resource
// Create one Resource
const Resource = await prisma.resource.create({
data: {
// ... data to create a Resource
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceCreateInput | ResourceUncheckedCreateInput | Yes |
Delete one Resource
// Delete one Resource
const Resource = await prisma.resource.delete({
where: {
// ... filter to delete one Resource
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereUniqueInput | Yes |
Update one Resource
// Update one Resource
const resource = await prisma.resource.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceUpdateInput | ResourceUncheckedUpdateInput | Yes |
| where | ResourceWhereUniqueInput | Yes |
Delete zero or more Resource
// Delete a few Resource
const { count } = await prisma.resource.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereInput | No |
Update zero or one Resource
const { count } = await prisma.resource.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceUpdateManyMutationInput | ResourceUncheckedUpdateManyInput | Yes |
| where | ResourceWhereInput | No |
Create or update one Resource
// Update or create a Resource
const resource = await prisma.resource.upsert({
create: {
// ... data to create a Resource
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Resource we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceWhereUniqueInput | Yes |
| create | ResourceCreateInput | ResourceUncheckedCreateInput | Yes |
| update | ResourceUpdateInput | ResourceUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| realmId | Int |
|
Yes | - |
| resourceId | Int |
|
Yes | - |
| vaultBalance | DateTime? |
|
No | - |
| balance | DateTime? |
|
No | - |
| lastUpdate | DateTime? |
|
No | - |
| lastEventId | String? |
|
No | - |
| qtyBuilt | Int |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| resoure | Resource |
|
Yes | - |
Find zero or one Labor
// Get one Labor
const labor = await prisma.labor.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LaborWhereUniqueInput | Yes |
Find first Labor
// Get one Labor
const labor = await prisma.labor.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LaborWhereInput | No |
| orderBy | LaborOrderByWithRelationInput[] | LaborOrderByWithRelationInput | No |
| cursor | LaborWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LaborScalarFieldEnum[] | No |
Find zero or more Labor
// Get all Labor
const Labor = await prisma.labor.findMany()
// Get first 10 Labor
const Labor = await prisma.labor.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LaborWhereInput | No |
| orderBy | LaborOrderByWithRelationInput[] | LaborOrderByWithRelationInput | No |
| cursor | LaborWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LaborScalarFieldEnum[] | No |
Create one Labor
// Create one Labor
const Labor = await prisma.labor.create({
data: {
// ... data to create a Labor
}
})
| Name | Type | Required |
|---|---|---|
| data | LaborCreateInput | LaborUncheckedCreateInput | Yes |
Delete one Labor
// Delete one Labor
const Labor = await prisma.labor.delete({
where: {
// ... filter to delete one Labor
}
})
| Name | Type | Required |
|---|---|---|
| where | LaborWhereUniqueInput | Yes |
Update one Labor
// Update one Labor
const labor = await prisma.labor.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LaborUpdateInput | LaborUncheckedUpdateInput | Yes |
| where | LaborWhereUniqueInput | Yes |
Delete zero or more Labor
// Delete a few Labor
const { count } = await prisma.labor.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LaborWhereInput | No |
Update zero or one Labor
const { count } = await prisma.labor.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LaborUpdateManyMutationInput | LaborUncheckedUpdateManyInput | Yes |
| where | LaborWhereInput | No |
Create or update one Labor
// Update or create a Labor
const labor = await prisma.labor.upsert({
create: {
// ... data to create a Labor
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Labor we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LaborWhereUniqueInput | Yes |
| create | LaborCreateInput | LaborUncheckedCreateInput | Yes |
| update | LaborUpdateInput | LaborUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| address | String |
|
Yes | - |
| tokenId | Int |
|
Yes | - |
| amount | String |
|
Yes | - |
| lastEventId | String? |
|
No | - |
Find zero or one WalletBalance
// Get one WalletBalance
const walletBalance = await prisma.walletBalance.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletBalanceWhereUniqueInput | Yes |
Find first WalletBalance
// Get one WalletBalance
const walletBalance = await prisma.walletBalance.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletBalanceWhereInput | No |
| orderBy | WalletBalanceOrderByWithRelationInput[] | WalletBalanceOrderByWithRelationInput | No |
| cursor | WalletBalanceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | WalletBalanceScalarFieldEnum[] | No |
Find zero or more WalletBalance
// Get all WalletBalance
const WalletBalance = await prisma.walletBalance.findMany()
// Get first 10 WalletBalance
const WalletBalance = await prisma.walletBalance.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | WalletBalanceWhereInput | No |
| orderBy | WalletBalanceOrderByWithRelationInput[] | WalletBalanceOrderByWithRelationInput | No |
| cursor | WalletBalanceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | WalletBalanceScalarFieldEnum[] | No |
Create one WalletBalance
// Create one WalletBalance
const WalletBalance = await prisma.walletBalance.create({
data: {
// ... data to create a WalletBalance
}
})
| Name | Type | Required |
|---|---|---|
| data | WalletBalanceCreateInput | WalletBalanceUncheckedCreateInput | Yes |
Delete one WalletBalance
// Delete one WalletBalance
const WalletBalance = await prisma.walletBalance.delete({
where: {
// ... filter to delete one WalletBalance
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletBalanceWhereUniqueInput | Yes |
Update one WalletBalance
// Update one WalletBalance
const walletBalance = await prisma.walletBalance.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | WalletBalanceUpdateInput | WalletBalanceUncheckedUpdateInput | Yes |
| where | WalletBalanceWhereUniqueInput | Yes |
Delete zero or more WalletBalance
// Delete a few WalletBalance
const { count } = await prisma.walletBalance.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletBalanceWhereInput | No |
Update zero or one WalletBalance
const { count } = await prisma.walletBalance.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | WalletBalanceUpdateManyMutationInput | WalletBalanceUncheckedUpdateManyInput | Yes |
| where | WalletBalanceWhereInput | No |
Create or update one WalletBalance
// Update or create a WalletBalance
const walletBalance = await prisma.walletBalance.upsert({
create: {
// ... data to create a WalletBalance
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the WalletBalance we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | WalletBalanceWhereUniqueInput | Yes |
| create | WalletBalanceCreateInput | WalletBalanceUncheckedCreateInput | Yes |
| update | WalletBalanceUpdateInput | WalletBalanceUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| type | RealmTraitType |
|
Yes | - |
| qty | Int |
|
Yes | - |
| realmId | Int |
|
Yes | - |
| realm | Realm? |
|
No | - |
Find zero or one RealmTrait
// Get one RealmTrait
const realmTrait = await prisma.realmTrait.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmTraitWhereUniqueInput | Yes |
Find first RealmTrait
// Get one RealmTrait
const realmTrait = await prisma.realmTrait.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmTraitWhereInput | No |
| orderBy | RealmTraitOrderByWithRelationInput[] | RealmTraitOrderByWithRelationInput | No |
| cursor | RealmTraitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RealmTraitScalarFieldEnum[] | No |
Find zero or more RealmTrait
// Get all RealmTrait
const RealmTrait = await prisma.realmTrait.findMany()
// Get first 10 RealmTrait
const RealmTrait = await prisma.realmTrait.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RealmTraitWhereInput | No |
| orderBy | RealmTraitOrderByWithRelationInput[] | RealmTraitOrderByWithRelationInput | No |
| cursor | RealmTraitWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RealmTraitScalarFieldEnum[] | No |
Create one RealmTrait
// Create one RealmTrait
const RealmTrait = await prisma.realmTrait.create({
data: {
// ... data to create a RealmTrait
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmTraitCreateInput | RealmTraitUncheckedCreateInput | Yes |
Delete one RealmTrait
// Delete one RealmTrait
const RealmTrait = await prisma.realmTrait.delete({
where: {
// ... filter to delete one RealmTrait
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmTraitWhereUniqueInput | Yes |
Update one RealmTrait
// Update one RealmTrait
const realmTrait = await prisma.realmTrait.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmTraitUpdateInput | RealmTraitUncheckedUpdateInput | Yes |
| where | RealmTraitWhereUniqueInput | Yes |
Delete zero or more RealmTrait
// Delete a few RealmTrait
const { count } = await prisma.realmTrait.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmTraitWhereInput | No |
Update zero or one RealmTrait
const { count } = await prisma.realmTrait.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmTraitUpdateManyMutationInput | RealmTraitUncheckedUpdateManyInput | Yes |
| where | RealmTraitWhereInput | No |
Create or update one RealmTrait
// Update or create a RealmTrait
const realmTrait = await prisma.realmTrait.upsert({
create: {
// ... data to create a RealmTrait
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RealmTrait we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmTraitWhereUniqueInput | Yes |
| create | RealmTraitCreateInput | RealmTraitUncheckedCreateInput | Yes |
| update | RealmTraitUpdateInput | RealmTraitUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| realmId | Int |
|
Yes | - |
| troopId | Int |
|
Yes | - |
| index | Int |
|
Yes | - |
| type | Int |
|
Yes | - |
| tier | Int |
|
Yes | - |
| building | Int |
|
Yes | - |
| agility | Int |
|
Yes | - |
| attack | Int |
|
Yes | - |
| armor | Int |
|
Yes | - |
| vitality | Int |
|
Yes | - |
| wisdom | Int |
|
Yes | - |
| squadSlot | Int |
|
Yes | - |
| timestamp | DateTime? |
|
No | - |
| Realm | Realm |
|
Yes | - |
Find zero or one Troop
// Get one Troop
const troop = await prisma.troop.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TroopWhereUniqueInput | Yes |
Find first Troop
// Get one Troop
const troop = await prisma.troop.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TroopWhereInput | No |
| orderBy | TroopOrderByWithRelationInput[] | TroopOrderByWithRelationInput | No |
| cursor | TroopWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TroopScalarFieldEnum[] | No |
Find zero or more Troop
// Get all Troop
const Troop = await prisma.troop.findMany()
// Get first 10 Troop
const Troop = await prisma.troop.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TroopWhereInput | No |
| orderBy | TroopOrderByWithRelationInput[] | TroopOrderByWithRelationInput | No |
| cursor | TroopWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TroopScalarFieldEnum[] | No |
Create one Troop
// Create one Troop
const Troop = await prisma.troop.create({
data: {
// ... data to create a Troop
}
})
| Name | Type | Required |
|---|---|---|
| data | TroopCreateInput | TroopUncheckedCreateInput | Yes |
Delete one Troop
// Delete one Troop
const Troop = await prisma.troop.delete({
where: {
// ... filter to delete one Troop
}
})
| Name | Type | Required |
|---|---|---|
| where | TroopWhereUniqueInput | Yes |
Update one Troop
// Update one Troop
const troop = await prisma.troop.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TroopUpdateInput | TroopUncheckedUpdateInput | Yes |
| where | TroopWhereUniqueInput | Yes |
Delete zero or more Troop
// Delete a few Troop
const { count } = await prisma.troop.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TroopWhereInput | No |
Update zero or one Troop
const { count } = await prisma.troop.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TroopUpdateManyMutationInput | TroopUncheckedUpdateManyInput | Yes |
| where | TroopWhereInput | No |
Create or update one Troop
// Update or create a Troop
const troop = await prisma.troop.upsert({
create: {
// ... data to create a Troop
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Troop we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TroopWhereUniqueInput | Yes |
| create | TroopCreateInput | TroopUncheckedCreateInput | Yes |
| update | TroopUpdateInput | TroopUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| gameId | Int |
|
Yes | - |
| winner | Int? |
|
No | - |
| attackedTokens | Int? |
|
No | - |
| defendedTokens | Int? |
|
No | - |
| damageInflicted | Int? |
|
No | - |
| eventIndexed | String? |
|
No | - |
| initialHealth | Int? |
|
No | - |
| startBlock | Int |
|
Yes | - |
| endBlock | Int |
|
Yes | - |
| startedOn | DateTime? |
|
No | - |
Find zero or one Desiege
// Get one Desiege
const desiege = await prisma.desiege.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeWhereUniqueInput | Yes |
Find first Desiege
// Get one Desiege
const desiege = await prisma.desiege.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeWhereInput | No |
| orderBy | DesiegeOrderByWithRelationInput[] | DesiegeOrderByWithRelationInput | No |
| cursor | DesiegeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DesiegeScalarFieldEnum[] | No |
Find zero or more Desiege
// Get all Desiege
const Desiege = await prisma.desiege.findMany()
// Get first 10 Desiege
const Desiege = await prisma.desiege.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DesiegeWhereInput | No |
| orderBy | DesiegeOrderByWithRelationInput[] | DesiegeOrderByWithRelationInput | No |
| cursor | DesiegeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DesiegeScalarFieldEnum[] | No |
Create one Desiege
// Create one Desiege
const Desiege = await prisma.desiege.create({
data: {
// ... data to create a Desiege
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiegeCreateInput | DesiegeUncheckedCreateInput | Yes |
Delete one Desiege
// Delete one Desiege
const Desiege = await prisma.desiege.delete({
where: {
// ... filter to delete one Desiege
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeWhereUniqueInput | Yes |
Update one Desiege
// Update one Desiege
const desiege = await prisma.desiege.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiegeUpdateInput | DesiegeUncheckedUpdateInput | Yes |
| where | DesiegeWhereUniqueInput | Yes |
Delete zero or more Desiege
// Delete a few Desiege
const { count } = await prisma.desiege.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeWhereInput | No |
Update zero or one Desiege
const { count } = await prisma.desiege.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiegeUpdateManyMutationInput | DesiegeUncheckedUpdateManyInput | Yes |
| where | DesiegeWhereInput | No |
Create or update one Desiege
// Update or create a Desiege
const desiege = await prisma.desiege.upsert({
create: {
// ... data to create a Desiege
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Desiege we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeWhereUniqueInput | Yes |
| create | DesiegeCreateInput | DesiegeUncheckedCreateInput | Yes |
| update | DesiegeUpdateInput | DesiegeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| gameId | Int |
|
Yes | - |
| account | String |
|
Yes | - |
| amount | Int |
|
Yes | - |
| amountBoosted | Int |
|
Yes | - |
| tokenOffset | Int |
|
Yes | - |
Find zero or one DesiegeAction
// Get one DesiegeAction
const desiegeAction = await prisma.desiegeAction.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeActionWhereUniqueInput | Yes |
Find first DesiegeAction
// Get one DesiegeAction
const desiegeAction = await prisma.desiegeAction.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeActionWhereInput | No |
| orderBy | DesiegeActionOrderByWithRelationInput[] | DesiegeActionOrderByWithRelationInput | No |
| cursor | DesiegeActionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DesiegeActionScalarFieldEnum[] | No |
Find zero or more DesiegeAction
// Get all DesiegeAction
const DesiegeAction = await prisma.desiegeAction.findMany()
// Get first 10 DesiegeAction
const DesiegeAction = await prisma.desiegeAction.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DesiegeActionWhereInput | No |
| orderBy | DesiegeActionOrderByWithRelationInput[] | DesiegeActionOrderByWithRelationInput | No |
| cursor | DesiegeActionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DesiegeActionScalarFieldEnum[] | No |
Create one DesiegeAction
// Create one DesiegeAction
const DesiegeAction = await prisma.desiegeAction.create({
data: {
// ... data to create a DesiegeAction
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiegeActionCreateInput | DesiegeActionUncheckedCreateInput | Yes |
Delete one DesiegeAction
// Delete one DesiegeAction
const DesiegeAction = await prisma.desiegeAction.delete({
where: {
// ... filter to delete one DesiegeAction
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeActionWhereUniqueInput | Yes |
Update one DesiegeAction
// Update one DesiegeAction
const desiegeAction = await prisma.desiegeAction.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiegeActionUpdateInput | DesiegeActionUncheckedUpdateInput | Yes |
| where | DesiegeActionWhereUniqueInput | Yes |
Delete zero or more DesiegeAction
// Delete a few DesiegeAction
const { count } = await prisma.desiegeAction.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeActionWhereInput | No |
Update zero or one DesiegeAction
const { count } = await prisma.desiegeAction.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DesiegeActionUpdateManyMutationInput | DesiegeActionUncheckedUpdateManyInput | Yes |
| where | DesiegeActionWhereInput | No |
Create or update one DesiegeAction
// Update or create a DesiegeAction
const desiegeAction = await prisma.desiegeAction.upsert({
create: {
// ... data to create a DesiegeAction
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the DesiegeAction we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DesiegeActionWhereUniqueInput | Yes |
| create | DesiegeActionCreateInput | DesiegeActionUncheckedCreateInput | Yes |
| update | DesiegeActionUpdateInput | DesiegeActionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| eventId | String |
|
Yes | - |
| blockNumber | Int |
|
Yes | - |
| transactionNumber | Int |
|
Yes | - |
| chainId | String |
|
Yes | - |
| contract | String |
|
Yes | - |
| name | String |
|
Yes | - |
| parameters | String[] |
|
Yes | - |
| keys | String[] |
|
Yes | - |
| timestamp | DateTime |
|
Yes | - |
| txHash | String |
|
Yes | - |
| status | Int |
|
Yes | - |
Find zero or one Event
// Get one Event
const event = await prisma.event.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
Find first Event
// Get one Event
const event = await prisma.event.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
| orderBy | EventOrderByWithRelationInput[] | EventOrderByWithRelationInput | No |
| cursor | EventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventScalarFieldEnum[] | No |
Find zero or more Event
// Get all Event
const Event = await prisma.event.findMany()
// Get first 10 Event
const Event = await prisma.event.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
| orderBy | EventOrderByWithRelationInput[] | EventOrderByWithRelationInput | No |
| cursor | EventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EventScalarFieldEnum[] | No |
Create one Event
// Create one Event
const Event = await prisma.event.create({
data: {
// ... data to create a Event
}
})
| Name | Type | Required |
|---|---|---|
| data | EventCreateInput | EventUncheckedCreateInput | Yes |
Delete one Event
// Delete one Event
const Event = await prisma.event.delete({
where: {
// ... filter to delete one Event
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
Update one Event
// Update one Event
const event = await prisma.event.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventUpdateInput | EventUncheckedUpdateInput | Yes |
| where | EventWhereUniqueInput | Yes |
Delete zero or more Event
// Delete a few Event
const { count } = await prisma.event.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereInput | No |
Update zero or one Event
const { count } = await prisma.event.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EventUpdateManyMutationInput | EventUncheckedUpdateManyInput | Yes |
| where | EventWhereInput | No |
Create or update one Event
// Update or create a Event
const event = await prisma.event.upsert({
create: {
// ... data to create a Event
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Event we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EventWhereUniqueInput | Yes |
| create | EventCreateInput | EventUncheckedCreateInput | Yes |
| update | EventUpdateInput | EventUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| moduleName | String |
|
Yes | - |
| eventId | String |
|
Yes | - |
Find zero or one LastIndexedEvent
// Get one LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LastIndexedEventWhereUniqueInput | Yes |
Find first LastIndexedEvent
// Get one LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LastIndexedEventWhereInput | No |
| orderBy | LastIndexedEventOrderByWithRelationInput[] | LastIndexedEventOrderByWithRelationInput | No |
| cursor | LastIndexedEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LastIndexedEventScalarFieldEnum[] | No |
Find zero or more LastIndexedEvent
// Get all LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.findMany()
// Get first 10 LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LastIndexedEventWhereInput | No |
| orderBy | LastIndexedEventOrderByWithRelationInput[] | LastIndexedEventOrderByWithRelationInput | No |
| cursor | LastIndexedEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LastIndexedEventScalarFieldEnum[] | No |
Create one LastIndexedEvent
// Create one LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.create({
data: {
// ... data to create a LastIndexedEvent
}
})
| Name | Type | Required |
|---|---|---|
| data | LastIndexedEventCreateInput | LastIndexedEventUncheckedCreateInput | Yes |
Delete one LastIndexedEvent
// Delete one LastIndexedEvent
const LastIndexedEvent = await prisma.lastIndexedEvent.delete({
where: {
// ... filter to delete one LastIndexedEvent
}
})
| Name | Type | Required |
|---|---|---|
| where | LastIndexedEventWhereUniqueInput | Yes |
Update one LastIndexedEvent
// Update one LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LastIndexedEventUpdateInput | LastIndexedEventUncheckedUpdateInput | Yes |
| where | LastIndexedEventWhereUniqueInput | Yes |
Delete zero or more LastIndexedEvent
// Delete a few LastIndexedEvent
const { count } = await prisma.lastIndexedEvent.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LastIndexedEventWhereInput | No |
Update zero or one LastIndexedEvent
const { count } = await prisma.lastIndexedEvent.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LastIndexedEventUpdateManyMutationInput | LastIndexedEventUncheckedUpdateManyInput | Yes |
| where | LastIndexedEventWhereInput | No |
Create or update one LastIndexedEvent
// Update or create a LastIndexedEvent
const lastIndexedEvent = await prisma.lastIndexedEvent.upsert({
create: {
// ... data to create a LastIndexedEvent
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LastIndexedEvent we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LastIndexedEventWhereUniqueInput | Yes |
| create | LastIndexedEventCreateInput | LastIndexedEventUncheckedCreateInput | Yes |
| update | LastIndexedEventUpdateInput | LastIndexedEventUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| owner | String? |
|
No | - |
| ownerDisplayName | String? |
|
No | - |
| kind | Int |
|
Yes | - |
| eventIndexed | String? |
|
No | - |
| revisions | LoreEntityRevision[] |
|
Yes | - |
Find zero or one LoreEntity
// Get one LoreEntity
const loreEntity = await prisma.loreEntity.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityWhereUniqueInput | Yes |
Find first LoreEntity
// Get one LoreEntity
const loreEntity = await prisma.loreEntity.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityWhereInput | No |
| orderBy | LoreEntityOrderByWithRelationInput[] | LoreEntityOrderByWithRelationInput | No |
| cursor | LoreEntityWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoreEntityScalarFieldEnum[] | No |
Find zero or more LoreEntity
// Get all LoreEntity
const LoreEntity = await prisma.loreEntity.findMany()
// Get first 10 LoreEntity
const LoreEntity = await prisma.loreEntity.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LoreEntityWhereInput | No |
| orderBy | LoreEntityOrderByWithRelationInput[] | LoreEntityOrderByWithRelationInput | No |
| cursor | LoreEntityWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoreEntityScalarFieldEnum[] | No |
Create one LoreEntity
// Create one LoreEntity
const LoreEntity = await prisma.loreEntity.create({
data: {
// ... data to create a LoreEntity
}
})
| Name | Type | Required |
|---|---|---|
| data | LoreEntityCreateInput | LoreEntityUncheckedCreateInput | Yes |
Delete one LoreEntity
// Delete one LoreEntity
const LoreEntity = await prisma.loreEntity.delete({
where: {
// ... filter to delete one LoreEntity
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityWhereUniqueInput | Yes |
Update one LoreEntity
// Update one LoreEntity
const loreEntity = await prisma.loreEntity.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoreEntityUpdateInput | LoreEntityUncheckedUpdateInput | Yes |
| where | LoreEntityWhereUniqueInput | Yes |
Delete zero or more LoreEntity
// Delete a few LoreEntity
const { count } = await prisma.loreEntity.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityWhereInput | No |
Update zero or one LoreEntity
const { count } = await prisma.loreEntity.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoreEntityUpdateManyMutationInput | LoreEntityUncheckedUpdateManyInput | Yes |
| where | LoreEntityWhereInput | No |
Create or update one LoreEntity
// Update or create a LoreEntity
const loreEntity = await prisma.loreEntity.upsert({
create: {
// ... data to create a LoreEntity
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LoreEntity we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityWhereUniqueInput | Yes |
| create | LoreEntityCreateInput | LoreEntityUncheckedCreateInput | Yes |
| update | LoreEntityUpdateInput | LoreEntityUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| revisionNumber | Int |
|
Yes | - |
| arweaveId | String |
|
Yes | - |
| title | String? |
|
No | - |
| markdown | String? |
|
No | - |
| excerpt | String? |
|
No | - |
| media_url | String? |
|
No | - |
| createdAt | DateTime? |
|
No | - |
| entity | LoreEntity |
|
Yes | - |
| entityId | Int |
|
Yes | - |
| eventIndexed | String? |
|
No | - |
| pois | LorePoisOnEntityRevisions[] |
|
Yes | - |
| props | LorePropsOnEntityRevisions[] |
|
Yes | - |
Find zero or one LoreEntityRevision
// Get one LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | Yes |
Find first LoreEntityRevision
// Get one LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityRevisionWhereInput | No |
| orderBy | LoreEntityRevisionOrderByWithRelationInput[] | LoreEntityRevisionOrderByWithRelationInput | No |
| cursor | LoreEntityRevisionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoreEntityRevisionScalarFieldEnum[] | No |
Find zero or more LoreEntityRevision
// Get all LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.findMany()
// Get first 10 LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LoreEntityRevisionWhereInput | No |
| orderBy | LoreEntityRevisionOrderByWithRelationInput[] | LoreEntityRevisionOrderByWithRelationInput | No |
| cursor | LoreEntityRevisionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoreEntityRevisionScalarFieldEnum[] | No |
Create one LoreEntityRevision
// Create one LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.create({
data: {
// ... data to create a LoreEntityRevision
}
})
| Name | Type | Required |
|---|---|---|
| data | LoreEntityRevisionCreateInput | LoreEntityRevisionUncheckedCreateInput | Yes |
Delete one LoreEntityRevision
// Delete one LoreEntityRevision
const LoreEntityRevision = await prisma.loreEntityRevision.delete({
where: {
// ... filter to delete one LoreEntityRevision
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | Yes |
Update one LoreEntityRevision
// Update one LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoreEntityRevisionUpdateInput | LoreEntityRevisionUncheckedUpdateInput | Yes |
| where | LoreEntityRevisionWhereUniqueInput | Yes |
Delete zero or more LoreEntityRevision
// Delete a few LoreEntityRevision
const { count } = await prisma.loreEntityRevision.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityRevisionWhereInput | No |
Update zero or one LoreEntityRevision
const { count } = await prisma.loreEntityRevision.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoreEntityRevisionUpdateManyMutationInput | LoreEntityRevisionUncheckedUpdateManyInput | Yes |
| where | LoreEntityRevisionWhereInput | No |
Create or update one LoreEntityRevision
// Update or create a LoreEntityRevision
const loreEntityRevision = await prisma.loreEntityRevision.upsert({
create: {
// ... data to create a LoreEntityRevision
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LoreEntityRevision we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | Yes |
| create | LoreEntityRevisionCreateInput | LoreEntityRevisionUncheckedCreateInput | Yes |
| update | LoreEntityRevisionUpdateInput | LoreEntityRevisionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| assetType | String? |
|
No | - |
| entities | LorePoisOnEntityRevisions[] |
|
Yes | - |
Find zero or one LorePOI
// Get one LorePOI
const lorePOI = await prisma.lorePOI.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePOIWhereUniqueInput | Yes |
Find first LorePOI
// Get one LorePOI
const lorePOI = await prisma.lorePOI.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePOIWhereInput | No |
| orderBy | LorePOIOrderByWithRelationInput[] | LorePOIOrderByWithRelationInput | No |
| cursor | LorePOIWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePOIScalarFieldEnum[] | No |
Find zero or more LorePOI
// Get all LorePOI
const LorePOI = await prisma.lorePOI.findMany()
// Get first 10 LorePOI
const LorePOI = await prisma.lorePOI.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LorePOIWhereInput | No |
| orderBy | LorePOIOrderByWithRelationInput[] | LorePOIOrderByWithRelationInput | No |
| cursor | LorePOIWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePOIScalarFieldEnum[] | No |
Create one LorePOI
// Create one LorePOI
const LorePOI = await prisma.lorePOI.create({
data: {
// ... data to create a LorePOI
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePOICreateInput | LorePOIUncheckedCreateInput | Yes |
Delete one LorePOI
// Delete one LorePOI
const LorePOI = await prisma.lorePOI.delete({
where: {
// ... filter to delete one LorePOI
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePOIWhereUniqueInput | Yes |
Update one LorePOI
// Update one LorePOI
const lorePOI = await prisma.lorePOI.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePOIUpdateInput | LorePOIUncheckedUpdateInput | Yes |
| where | LorePOIWhereUniqueInput | Yes |
Delete zero or more LorePOI
// Delete a few LorePOI
const { count } = await prisma.lorePOI.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePOIWhereInput | No |
Update zero or one LorePOI
const { count } = await prisma.lorePOI.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePOIUpdateManyMutationInput | LorePOIUncheckedUpdateManyInput | Yes |
| where | LorePOIWhereInput | No |
Create or update one LorePOI
// Update or create a LorePOI
const lorePOI = await prisma.lorePOI.upsert({
create: {
// ... data to create a LorePOI
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LorePOI we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePOIWhereUniqueInput | Yes |
| create | LorePOICreateInput | LorePOIUncheckedCreateInput | Yes |
| update | LorePOIUpdateInput | LorePOIUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| entities | LorePropsOnEntityRevisions[] |
|
Yes | - |
Find zero or one LoreProp
// Get one LoreProp
const loreProp = await prisma.loreProp.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropWhereUniqueInput | Yes |
Find first LoreProp
// Get one LoreProp
const loreProp = await prisma.loreProp.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropWhereInput | No |
| orderBy | LorePropOrderByWithRelationInput[] | LorePropOrderByWithRelationInput | No |
| cursor | LorePropWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePropScalarFieldEnum[] | No |
Find zero or more LoreProp
// Get all LoreProp
const LoreProp = await prisma.loreProp.findMany()
// Get first 10 LoreProp
const LoreProp = await prisma.loreProp.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LorePropWhereInput | No |
| orderBy | LorePropOrderByWithRelationInput[] | LorePropOrderByWithRelationInput | No |
| cursor | LorePropWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePropScalarFieldEnum[] | No |
Create one LoreProp
// Create one LoreProp
const LoreProp = await prisma.loreProp.create({
data: {
// ... data to create a LoreProp
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePropCreateInput | LorePropUncheckedCreateInput | Yes |
Delete one LoreProp
// Delete one LoreProp
const LoreProp = await prisma.loreProp.delete({
where: {
// ... filter to delete one LoreProp
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropWhereUniqueInput | Yes |
Update one LoreProp
// Update one LoreProp
const loreProp = await prisma.loreProp.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePropUpdateInput | LorePropUncheckedUpdateInput | Yes |
| where | LorePropWhereUniqueInput | Yes |
Delete zero or more LoreProp
// Delete a few LoreProp
const { count } = await prisma.loreProp.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropWhereInput | No |
Update zero or one LoreProp
const { count } = await prisma.loreProp.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePropUpdateManyMutationInput | LorePropUncheckedUpdateManyInput | Yes |
| where | LorePropWhereInput | No |
Create or update one LoreProp
// Update or create a LoreProp
const loreProp = await prisma.loreProp.upsert({
create: {
// ... data to create a LoreProp
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LoreProp we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropWhereUniqueInput | Yes |
| create | LorePropCreateInput | LorePropUncheckedCreateInput | Yes |
| update | LorePropUpdateInput | LorePropUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| entityRevision | LoreEntityRevision |
|
Yes | - |
| entityRevisionId | Int |
|
Yes | - |
| poi | LorePOI |
|
Yes | - |
| poiId | Int |
|
Yes | - |
| assetId | String? |
|
No | - |
Find zero or one LorePoisOnEntityRevisions
// Get one LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereUniqueInput | Yes |
Find first LorePoisOnEntityRevisions
// Get one LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereInput | No |
| orderBy | LorePoisOnEntityRevisionsOrderByWithRelationInput[] | LorePoisOnEntityRevisionsOrderByWithRelationInput | No |
| cursor | LorePoisOnEntityRevisionsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePoisOnEntityRevisionsScalarFieldEnum[] | No |
Find zero or more LorePoisOnEntityRevisions
// Get all LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findMany()
// Get first 10 LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereInput | No |
| orderBy | LorePoisOnEntityRevisionsOrderByWithRelationInput[] | LorePoisOnEntityRevisionsOrderByWithRelationInput | No |
| cursor | LorePoisOnEntityRevisionsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePoisOnEntityRevisionsScalarFieldEnum[] | No |
Create one LorePoisOnEntityRevisions
// Create one LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.create({
data: {
// ... data to create a LorePoisOnEntityRevisions
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePoisOnEntityRevisionsCreateInput | LorePoisOnEntityRevisionsUncheckedCreateInput | Yes |
Delete one LorePoisOnEntityRevisions
// Delete one LorePoisOnEntityRevisions
const LorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.delete({
where: {
// ... filter to delete one LorePoisOnEntityRevisions
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereUniqueInput | Yes |
Update one LorePoisOnEntityRevisions
// Update one LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePoisOnEntityRevisionsUpdateInput | LorePoisOnEntityRevisionsUncheckedUpdateInput | Yes |
| where | LorePoisOnEntityRevisionsWhereUniqueInput | Yes |
Delete zero or more LorePoisOnEntityRevisions
// Delete a few LorePoisOnEntityRevisions
const { count } = await prisma.lorePoisOnEntityRevisions.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereInput | No |
Update zero or one LorePoisOnEntityRevisions
const { count } = await prisma.lorePoisOnEntityRevisions.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePoisOnEntityRevisionsUpdateManyMutationInput | LorePoisOnEntityRevisionsUncheckedUpdateManyInput | Yes |
| where | LorePoisOnEntityRevisionsWhereInput | No |
Create or update one LorePoisOnEntityRevisions
// Update or create a LorePoisOnEntityRevisions
const lorePoisOnEntityRevisions = await prisma.lorePoisOnEntityRevisions.upsert({
create: {
// ... data to create a LorePoisOnEntityRevisions
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LorePoisOnEntityRevisions we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereUniqueInput | Yes |
| create | LorePoisOnEntityRevisionsCreateInput | LorePoisOnEntityRevisionsUncheckedCreateInput | Yes |
| update | LorePoisOnEntityRevisionsUpdateInput | LorePoisOnEntityRevisionsUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| entityRevision | LoreEntityRevision |
|
Yes | - |
| entityRevisionId | Int |
|
Yes | - |
| prop | LoreProp |
|
Yes | - |
| propId | Int |
|
Yes | - |
| value | String? |
|
No | - |
Find zero or one LorePropsOnEntityRevisions
// Get one LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereUniqueInput | Yes |
Find first LorePropsOnEntityRevisions
// Get one LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereInput | No |
| orderBy | LorePropsOnEntityRevisionsOrderByWithRelationInput[] | LorePropsOnEntityRevisionsOrderByWithRelationInput | No |
| cursor | LorePropsOnEntityRevisionsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePropsOnEntityRevisionsScalarFieldEnum[] | No |
Find zero or more LorePropsOnEntityRevisions
// Get all LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findMany()
// Get first 10 LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereInput | No |
| orderBy | LorePropsOnEntityRevisionsOrderByWithRelationInput[] | LorePropsOnEntityRevisionsOrderByWithRelationInput | No |
| cursor | LorePropsOnEntityRevisionsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LorePropsOnEntityRevisionsScalarFieldEnum[] | No |
Create one LorePropsOnEntityRevisions
// Create one LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.create({
data: {
// ... data to create a LorePropsOnEntityRevisions
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePropsOnEntityRevisionsCreateInput | LorePropsOnEntityRevisionsUncheckedCreateInput | Yes |
Delete one LorePropsOnEntityRevisions
// Delete one LorePropsOnEntityRevisions
const LorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.delete({
where: {
// ... filter to delete one LorePropsOnEntityRevisions
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereUniqueInput | Yes |
Update one LorePropsOnEntityRevisions
// Update one LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePropsOnEntityRevisionsUpdateInput | LorePropsOnEntityRevisionsUncheckedUpdateInput | Yes |
| where | LorePropsOnEntityRevisionsWhereUniqueInput | Yes |
Delete zero or more LorePropsOnEntityRevisions
// Delete a few LorePropsOnEntityRevisions
const { count } = await prisma.lorePropsOnEntityRevisions.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereInput | No |
Update zero or one LorePropsOnEntityRevisions
const { count } = await prisma.lorePropsOnEntityRevisions.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LorePropsOnEntityRevisionsUpdateManyMutationInput | LorePropsOnEntityRevisionsUncheckedUpdateManyInput | Yes |
| where | LorePropsOnEntityRevisionsWhereInput | No |
Create or update one LorePropsOnEntityRevisions
// Update or create a LorePropsOnEntityRevisions
const lorePropsOnEntityRevisions = await prisma.lorePropsOnEntityRevisions.upsert({
create: {
// ... data to create a LorePropsOnEntityRevisions
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LorePropsOnEntityRevisions we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereUniqueInput | Yes |
| create | LorePropsOnEntityRevisionsCreateInput | LorePropsOnEntityRevisionsUncheckedCreateInput | Yes |
| update | LorePropsOnEntityRevisionsUpdateInput | LorePropsOnEntityRevisionsUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| date | String |
|
Yes | - |
| hour | Int |
|
Yes | - |
| tokenId | Int |
|
Yes | - |
| amount | String |
|
Yes | - |
| buyAmount | String |
|
Yes | - |
| sellAmount | String |
|
Yes | - |
| currencyReserve | String |
|
Yes | - |
| tokenReserve | String |
|
Yes | - |
| lpAmount | String |
|
Yes | - |
Find zero or one ExchangeRate
// Get one ExchangeRate
const exchangeRate = await prisma.exchangeRate.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeRateWhereUniqueInput | Yes |
Find first ExchangeRate
// Get one ExchangeRate
const exchangeRate = await prisma.exchangeRate.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeRateWhereInput | No |
| orderBy | ExchangeRateOrderByWithRelationInput[] | ExchangeRateOrderByWithRelationInput | No |
| cursor | ExchangeRateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ExchangeRateScalarFieldEnum[] | No |
Find zero or more ExchangeRate
// Get all ExchangeRate
const ExchangeRate = await prisma.exchangeRate.findMany()
// Get first 10 ExchangeRate
const ExchangeRate = await prisma.exchangeRate.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ExchangeRateWhereInput | No |
| orderBy | ExchangeRateOrderByWithRelationInput[] | ExchangeRateOrderByWithRelationInput | No |
| cursor | ExchangeRateWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ExchangeRateScalarFieldEnum[] | No |
Create one ExchangeRate
// Create one ExchangeRate
const ExchangeRate = await prisma.exchangeRate.create({
data: {
// ... data to create a ExchangeRate
}
})
| Name | Type | Required |
|---|---|---|
| data | ExchangeRateCreateInput | ExchangeRateUncheckedCreateInput | Yes |
Delete one ExchangeRate
// Delete one ExchangeRate
const ExchangeRate = await prisma.exchangeRate.delete({
where: {
// ... filter to delete one ExchangeRate
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeRateWhereUniqueInput | Yes |
Update one ExchangeRate
// Update one ExchangeRate
const exchangeRate = await prisma.exchangeRate.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ExchangeRateUpdateInput | ExchangeRateUncheckedUpdateInput | Yes |
| where | ExchangeRateWhereUniqueInput | Yes |
Delete zero or more ExchangeRate
// Delete a few ExchangeRate
const { count } = await prisma.exchangeRate.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeRateWhereInput | No |
Update zero or one ExchangeRate
const { count } = await prisma.exchangeRate.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ExchangeRateUpdateManyMutationInput | ExchangeRateUncheckedUpdateManyInput | Yes |
| where | ExchangeRateWhereInput | No |
Create or update one ExchangeRate
// Update or create a ExchangeRate
const exchangeRate = await prisma.exchangeRate.upsert({
create: {
// ... data to create a ExchangeRate
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ExchangeRate we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeRateWhereUniqueInput | Yes |
| create | ExchangeRateCreateInput | ExchangeRateUncheckedCreateInput | Yes |
| update | ExchangeRateUpdateInput | ExchangeRateUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| eventId | String |
|
Yes | - |
| eventType | String |
|
Yes | - |
| realmId | Int |
|
Yes | - |
| realmOwner | String |
|
Yes | - |
| realmName | String |
|
Yes | - |
| realmOrder | OrderType? |
|
No | - |
| data | Json |
|
Yes | - |
| timestamp | DateTime |
|
Yes | - |
| transactionHash | String |
|
Yes | - |
Find zero or one RealmHistory
// Get one RealmHistory
const realmHistory = await prisma.realmHistory.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmHistoryWhereUniqueInput | Yes |
Find first RealmHistory
// Get one RealmHistory
const realmHistory = await prisma.realmHistory.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmHistoryWhereInput | No |
| orderBy | RealmHistoryOrderByWithRelationInput[] | RealmHistoryOrderByWithRelationInput | No |
| cursor | RealmHistoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RealmHistoryScalarFieldEnum[] | No |
Find zero or more RealmHistory
// Get all RealmHistory
const RealmHistory = await prisma.realmHistory.findMany()
// Get first 10 RealmHistory
const RealmHistory = await prisma.realmHistory.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RealmHistoryWhereInput | No |
| orderBy | RealmHistoryOrderByWithRelationInput[] | RealmHistoryOrderByWithRelationInput | No |
| cursor | RealmHistoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RealmHistoryScalarFieldEnum[] | No |
Create one RealmHistory
// Create one RealmHistory
const RealmHistory = await prisma.realmHistory.create({
data: {
// ... data to create a RealmHistory
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmHistoryCreateInput | RealmHistoryUncheckedCreateInput | Yes |
Delete one RealmHistory
// Delete one RealmHistory
const RealmHistory = await prisma.realmHistory.delete({
where: {
// ... filter to delete one RealmHistory
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmHistoryWhereUniqueInput | Yes |
Update one RealmHistory
// Update one RealmHistory
const realmHistory = await prisma.realmHistory.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmHistoryUpdateInput | RealmHistoryUncheckedUpdateInput | Yes |
| where | RealmHistoryWhereUniqueInput | Yes |
Delete zero or more RealmHistory
// Delete a few RealmHistory
const { count } = await prisma.realmHistory.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmHistoryWhereInput | No |
Update zero or one RealmHistory
const { count } = await prisma.realmHistory.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RealmHistoryUpdateManyMutationInput | RealmHistoryUncheckedUpdateManyInput | Yes |
| where | RealmHistoryWhereInput | No |
Create or update one RealmHistory
// Update or create a RealmHistory
const realmHistory = await prisma.realmHistory.upsert({
create: {
// ... data to create a RealmHistory
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the RealmHistory we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RealmHistoryWhereUniqueInput | Yes |
| create | RealmHistoryCreateInput | RealmHistoryUncheckedCreateInput | Yes |
| update | RealmHistoryUpdateInput | RealmHistoryUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| eventId | String |
|
Yes | - |
| eventType | String |
|
Yes | - |
| attackRealmId | Int |
|
Yes | - |
| attackRealmOwner | String |
|
Yes | - |
| attackSquad | Json |
|
Yes | - |
| defendRealmId | Int |
|
Yes | - |
| defendRealmOwner | String |
|
Yes | - |
| defendSquad | Json |
|
Yes | - |
| timestamp | DateTime |
|
Yes | - |
| transactionHash | String |
|
Yes | - |
| outcome | Int |
|
Yes | - |
| attackType | Int |
|
Yes | - |
| hitPoints | Int |
|
Yes | - |
Find zero or one CombatHistory
// Get one CombatHistory
const combatHistory = await prisma.combatHistory.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CombatHistoryWhereUniqueInput | Yes |
Find first CombatHistory
// Get one CombatHistory
const combatHistory = await prisma.combatHistory.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CombatHistoryWhereInput | No |
| orderBy | CombatHistoryOrderByWithRelationInput[] | CombatHistoryOrderByWithRelationInput | No |
| cursor | CombatHistoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CombatHistoryScalarFieldEnum[] | No |
Find zero or more CombatHistory
// Get all CombatHistory
const CombatHistory = await prisma.combatHistory.findMany()
// Get first 10 CombatHistory
const CombatHistory = await prisma.combatHistory.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CombatHistoryWhereInput | No |
| orderBy | CombatHistoryOrderByWithRelationInput[] | CombatHistoryOrderByWithRelationInput | No |
| cursor | CombatHistoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CombatHistoryScalarFieldEnum[] | No |
Create one CombatHistory
// Create one CombatHistory
const CombatHistory = await prisma.combatHistory.create({
data: {
// ... data to create a CombatHistory
}
})
| Name | Type | Required |
|---|---|---|
| data | CombatHistoryCreateInput | CombatHistoryUncheckedCreateInput | Yes |
Delete one CombatHistory
// Delete one CombatHistory
const CombatHistory = await prisma.combatHistory.delete({
where: {
// ... filter to delete one CombatHistory
}
})
| Name | Type | Required |
|---|---|---|
| where | CombatHistoryWhereUniqueInput | Yes |
Update one CombatHistory
// Update one CombatHistory
const combatHistory = await prisma.combatHistory.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CombatHistoryUpdateInput | CombatHistoryUncheckedUpdateInput | Yes |
| where | CombatHistoryWhereUniqueInput | Yes |
Delete zero or more CombatHistory
// Delete a few CombatHistory
const { count } = await prisma.combatHistory.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CombatHistoryWhereInput | No |
Update zero or one CombatHistory
const { count } = await prisma.combatHistory.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CombatHistoryUpdateManyMutationInput | CombatHistoryUncheckedUpdateManyInput | Yes |
| where | CombatHistoryWhereInput | No |
Create or update one CombatHistory
// Update or create a CombatHistory
const combatHistory = await prisma.combatHistory.upsert({
create: {
// ... data to create a CombatHistory
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CombatHistory we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CombatHistoryWhereUniqueInput | Yes |
| create | CombatHistoryCreateInput | CombatHistoryUncheckedCreateInput | Yes |
| update | CombatHistoryUpdateInput | CombatHistoryUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| resourceId | Int |
|
Yes | - |
| eventId | String |
|
Yes | - |
| blockNumber | Int |
|
Yes | - |
| transactionNumber | Int |
|
Yes | - |
| fromAddress | String |
|
Yes | - |
| toAddress | String |
|
Yes | - |
| amount | String |
|
Yes | - |
| amountValue | Decimal |
|
Yes | - |
| transactionHash | String |
|
Yes | - |
| timestamp | DateTime |
|
Yes | - |
Find zero or one ResourceTransfer
// Get one ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceTransferWhereUniqueInput | Yes |
Find first ResourceTransfer
// Get one ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceTransferWhereInput | No |
| orderBy | ResourceTransferOrderByWithRelationInput[] | ResourceTransferOrderByWithRelationInput | No |
| cursor | ResourceTransferWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ResourceTransferScalarFieldEnum[] | No |
Find zero or more ResourceTransfer
// Get all ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.findMany()
// Get first 10 ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ResourceTransferWhereInput | No |
| orderBy | ResourceTransferOrderByWithRelationInput[] | ResourceTransferOrderByWithRelationInput | No |
| cursor | ResourceTransferWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ResourceTransferScalarFieldEnum[] | No |
Create one ResourceTransfer
// Create one ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.create({
data: {
// ... data to create a ResourceTransfer
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceTransferCreateInput | ResourceTransferUncheckedCreateInput | Yes |
Delete one ResourceTransfer
// Delete one ResourceTransfer
const ResourceTransfer = await prisma.resourceTransfer.delete({
where: {
// ... filter to delete one ResourceTransfer
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceTransferWhereUniqueInput | Yes |
Update one ResourceTransfer
// Update one ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceTransferUpdateInput | ResourceTransferUncheckedUpdateInput | Yes |
| where | ResourceTransferWhereUniqueInput | Yes |
Delete zero or more ResourceTransfer
// Delete a few ResourceTransfer
const { count } = await prisma.resourceTransfer.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceTransferWhereInput | No |
Update zero or one ResourceTransfer
const { count } = await prisma.resourceTransfer.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ResourceTransferUpdateManyMutationInput | ResourceTransferUncheckedUpdateManyInput | Yes |
| where | ResourceTransferWhereInput | No |
Create or update one ResourceTransfer
// Update or create a ResourceTransfer
const resourceTransfer = await prisma.resourceTransfer.upsert({
create: {
// ... data to create a ResourceTransfer
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ResourceTransfer we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ResourceTransferWhereUniqueInput | Yes |
| create | ResourceTransferCreateInput | ResourceTransferUncheckedCreateInput | Yes |
| update | ResourceTransferUpdateInput | ResourceTransferUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| realmId | Int |
|
Yes | - |
| armyId | Int |
|
Yes | - |
| destinationRealmId | Int |
|
Yes | - |
| destinationArrivalTime | DateTime? |
|
No | - |
| armyPacked | Int |
|
Yes | - |
| lastAttacked | DateTime? |
|
No | - |
| xp | Int |
|
Yes | - |
| level | Int |
|
Yes | - |
| callSign | Int |
|
Yes | - |
| lightCavalryQty | Int |
|
Yes | - |
| lightCavalryHealth | Int |
|
Yes | - |
| heavyCavalryQty | Int |
|
Yes | - |
| heavyCavalryHealth | Int |
|
Yes | - |
| archerQty | Int |
|
Yes | - |
| archerHealth | Int |
|
Yes | - |
| longbowQty | Int |
|
Yes | - |
| longbowHealth | Int |
|
Yes | - |
| mageQty | Int |
|
Yes | - |
| mageHealth | Int |
|
Yes | - |
| arcanistQty | Int |
|
Yes | - |
| arcanistHealth | Int |
|
Yes | - |
| lightInfantryQty | Int |
|
Yes | - |
| lightInfantryHealth | Int |
|
Yes | - |
| heavyInfantryQty | Int |
|
Yes | - |
| heavyInfantryHealth | Int |
|
Yes | - |
| ownRealm | Realm |
|
Yes | - |
Find zero or one Army
// Get one Army
const army = await prisma.army.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ArmyWhereUniqueInput | Yes |
Find first Army
// Get one Army
const army = await prisma.army.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ArmyWhereInput | No |
| orderBy | ArmyOrderByWithRelationInput[] | ArmyOrderByWithRelationInput | No |
| cursor | ArmyWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ArmyScalarFieldEnum[] | No |
Find zero or more Army
// Get all Army
const Army = await prisma.army.findMany()
// Get first 10 Army
const Army = await prisma.army.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ArmyWhereInput | No |
| orderBy | ArmyOrderByWithRelationInput[] | ArmyOrderByWithRelationInput | No |
| cursor | ArmyWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ArmyScalarFieldEnum[] | No |
Create one Army
// Create one Army
const Army = await prisma.army.create({
data: {
// ... data to create a Army
}
})
| Name | Type | Required |
|---|---|---|
| data | ArmyCreateInput | ArmyUncheckedCreateInput | Yes |
Delete one Army
// Delete one Army
const Army = await prisma.army.delete({
where: {
// ... filter to delete one Army
}
})
| Name | Type | Required |
|---|---|---|
| where | ArmyWhereUniqueInput | Yes |
Update one Army
// Update one Army
const army = await prisma.army.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ArmyUpdateInput | ArmyUncheckedUpdateInput | Yes |
| where | ArmyWhereUniqueInput | Yes |
Delete zero or more Army
// Delete a few Army
const { count } = await prisma.army.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ArmyWhereInput | No |
Update zero or one Army
const { count } = await prisma.army.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ArmyUpdateManyMutationInput | ArmyUncheckedUpdateManyInput | Yes |
| where | ArmyWhereInput | No |
Create or update one Army
// Update or create a Army
const army = await prisma.army.upsert({
create: {
// ... data to create a Army
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Army we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ArmyWhereUniqueInput | Yes |
| create | ArmyCreateInput | ArmyUncheckedCreateInput | Yes |
| update | ArmyUpdateInput | ArmyUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| eventId | String |
|
Yes | - |
| contractId | Int |
|
Yes | - |
| tokenId | Int |
|
Yes | - |
| nestedId | Int |
|
Yes | - |
| locationContractId | Int |
|
Yes | - |
| locationTokenId | Int |
|
Yes | - |
| locationNestedId | Int |
|
Yes | - |
| destinationContractId | Int |
|
Yes | - |
| destinationTokenId | Int |
|
Yes | - |
| destinationNestedId | Int |
|
Yes | - |
| destinationArrivalTime | DateTime |
|
Yes | - |
| timestamp | DateTime |
|
Yes | - |
Find zero or one Travel
// Get one Travel
const travel = await prisma.travel.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TravelWhereUniqueInput | Yes |
Find first Travel
// Get one Travel
const travel = await prisma.travel.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TravelWhereInput | No |
| orderBy | TravelOrderByWithRelationInput[] | TravelOrderByWithRelationInput | No |
| cursor | TravelWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TravelScalarFieldEnum[] | No |
Find zero or more Travel
// Get all Travel
const Travel = await prisma.travel.findMany()
// Get first 10 Travel
const Travel = await prisma.travel.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TravelWhereInput | No |
| orderBy | TravelOrderByWithRelationInput[] | TravelOrderByWithRelationInput | No |
| cursor | TravelWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TravelScalarFieldEnum[] | No |
Create one Travel
// Create one Travel
const Travel = await prisma.travel.create({
data: {
// ... data to create a Travel
}
})
| Name | Type | Required |
|---|---|---|
| data | TravelCreateInput | TravelUncheckedCreateInput | Yes |
Delete one Travel
// Delete one Travel
const Travel = await prisma.travel.delete({
where: {
// ... filter to delete one Travel
}
})
| Name | Type | Required |
|---|---|---|
| where | TravelWhereUniqueInput | Yes |
Update one Travel
// Update one Travel
const travel = await prisma.travel.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TravelUpdateInput | TravelUncheckedUpdateInput | Yes |
| where | TravelWhereUniqueInput | Yes |
Delete zero or more Travel
// Delete a few Travel
const { count } = await prisma.travel.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TravelWhereInput | No |
Update zero or one Travel
const { count } = await prisma.travel.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TravelUpdateManyMutationInput | TravelUncheckedUpdateManyInput | Yes |
| where | TravelWhereInput | No |
Create or update one Travel
// Update or create a Travel
const travel = await prisma.travel.upsert({
create: {
// ... data to create a Travel
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Travel we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TravelWhereUniqueInput | Yes |
| create | TravelCreateInput | TravelUncheckedCreateInput | Yes |
| update | TravelUpdateInput | TravelUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| eventId | String |
|
Yes | - |
| type | ExchangeEventType |
|
Yes | - |
| resourceId | Int |
|
Yes | - |
| address | String |
|
Yes | - |
| currencyAmount | String |
|
Yes | - |
| currencyAmountValue | Decimal |
|
Yes | - |
| resourceAmount | String |
|
Yes | - |
| resourceAmountValue | Decimal |
|
Yes | - |
| timestamp | DateTime |
|
Yes | - |
Find zero or one ExchangeEvent
// Get one ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeEventWhereUniqueInput | Yes |
Find first ExchangeEvent
// Get one ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeEventWhereInput | No |
| orderBy | ExchangeEventOrderByWithRelationInput[] | ExchangeEventOrderByWithRelationInput | No |
| cursor | ExchangeEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ExchangeEventScalarFieldEnum[] | No |
Find zero or more ExchangeEvent
// Get all ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.findMany()
// Get first 10 ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ExchangeEventWhereInput | No |
| orderBy | ExchangeEventOrderByWithRelationInput[] | ExchangeEventOrderByWithRelationInput | No |
| cursor | ExchangeEventWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ExchangeEventScalarFieldEnum[] | No |
Create one ExchangeEvent
// Create one ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.create({
data: {
// ... data to create a ExchangeEvent
}
})
| Name | Type | Required |
|---|---|---|
| data | ExchangeEventCreateInput | ExchangeEventUncheckedCreateInput | Yes |
Delete one ExchangeEvent
// Delete one ExchangeEvent
const ExchangeEvent = await prisma.exchangeEvent.delete({
where: {
// ... filter to delete one ExchangeEvent
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeEventWhereUniqueInput | Yes |
Update one ExchangeEvent
// Update one ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ExchangeEventUpdateInput | ExchangeEventUncheckedUpdateInput | Yes |
| where | ExchangeEventWhereUniqueInput | Yes |
Delete zero or more ExchangeEvent
// Delete a few ExchangeEvent
const { count } = await prisma.exchangeEvent.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeEventWhereInput | No |
Update zero or one ExchangeEvent
const { count } = await prisma.exchangeEvent.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ExchangeEventUpdateManyMutationInput | ExchangeEventUncheckedUpdateManyInput | Yes |
| where | ExchangeEventWhereInput | No |
Create or update one ExchangeEvent
// Update or create a ExchangeEvent
const exchangeEvent = await prisma.exchangeEvent.upsert({
create: {
// ... data to create a ExchangeEvent
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ExchangeEvent we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ExchangeEventWhereUniqueInput | Yes |
| create | ExchangeEventCreateInput | ExchangeEventUncheckedCreateInput | Yes |
| update | ExchangeEventUpdateInput | ExchangeEventUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | WalletWhereInput | WalletWhereInput[] | No |
| OR | WalletWhereInput[] | No |
| NOT | WalletWhereInput | WalletWhereInput[] | No |
| id | IntFilter | Int | No |
| address | StringFilter | String | No |
| realmsL1 | RealmListRelationFilter | No |
| realmsL2 | RealmListRelationFilter | No |
| realmsSettled | RealmListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| address | SortOrder | No |
| realmsL1 | RealmOrderByRelationAggregateInput | No |
| realmsL2 | RealmOrderByRelationAggregateInput | No |
| realmsSettled | RealmOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| address | SortOrder | No |
| _count | WalletCountOrderByAggregateInput | No |
| _avg | WalletAvgOrderByAggregateInput | No |
| _max | WalletMaxOrderByAggregateInput | No |
| _min | WalletMinOrderByAggregateInput | No |
| _sum | WalletSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | WalletScalarWhereWithAggregatesInput | WalletScalarWhereWithAggregatesInput[] | No |
| OR | WalletScalarWhereWithAggregatesInput[] | No |
| NOT | WalletScalarWhereWithAggregatesInput | WalletScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| address | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RealmWhereInput | RealmWhereInput[] | No |
| OR | RealmWhereInput[] | No |
| NOT | RealmWhereInput | RealmWhereInput[] | No |
| id | IntFilter | Int | No |
| realmId | IntFilter | Int | No |
| name | StringNullableFilter | String | Null | Yes |
| wallet | WalletRelationFilter | WalletWhereInput | Null | Yes |
| owner | StringNullableFilter | String | Null | Yes |
| bridgedOwner | StringNullableFilter | String | Null | Yes |
| ownerL2 | StringNullableFilter | String | Null | Yes |
| walletL2 | WalletRelationFilter | WalletWhereInput | Null | Yes |
| settledOwner | StringNullableFilter | String | Null | Yes |
| walletSettled | WalletRelationFilter | WalletWhereInput | Null | Yes |
| wonder | StringNullableFilter | String | Null | Yes |
| rarityRank | IntFilter | Int | No |
| rarityScore | FloatFilter | Float | No |
| imageUrl | StringFilter | String | No |
| relic | RelicRelationFilter | RelicWhereInput | Null | Yes |
| orderType | EnumOrderTypeNullableFilter | OrderType | Null | Yes |
| buildings | BuildingListRelationFilter | No |
| resources | ResourceListRelationFilter | No |
| relicsOwned | RelicListRelationFilter | No |
| traits | RealmTraitListRelationFilter | No |
| squad | TroopListRelationFilter | No |
| lastAttacked | DateTimeNullableFilter | DateTime | Null | Yes |
| lastClaimTime | DateTimeNullableFilter | DateTime | Null | Yes |
| lastTick | DateTimeNullableFilter | DateTime | Null | Yes |
| lastVaultTime | DateTimeNullableFilter | DateTime | Null | Yes |
| longitude | FloatFilter | Float | No |
| latitude | FloatFilter | Float | No |
| ownArmies | ArmyListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| name | SortOrder | No |
| wallet | WalletOrderByWithRelationInput | No |
| owner | SortOrder | No |
| bridgedOwner | SortOrder | No |
| ownerL2 | SortOrder | No |
| walletL2 | WalletOrderByWithRelationInput | No |
| settledOwner | SortOrder | No |
| walletSettled | WalletOrderByWithRelationInput | No |
| wonder | SortOrder | No |
| rarityRank | SortOrder | No |
| rarityScore | SortOrder | No |
| imageUrl | SortOrder | No |
| relic | RelicOrderByWithRelationInput | No |
| orderType | SortOrder | No |
| buildings | BuildingOrderByRelationAggregateInput | No |
| resources | ResourceOrderByRelationAggregateInput | No |
| relicsOwned | RelicOrderByRelationAggregateInput | No |
| traits | RealmTraitOrderByRelationAggregateInput | No |
| squad | TroopOrderByRelationAggregateInput | No |
| lastAttacked | SortOrder | No |
| lastClaimTime | SortOrder | No |
| lastTick | SortOrder | No |
| lastVaultTime | SortOrder | No |
| longitude | SortOrder | No |
| latitude | SortOrder | No |
| ownArmies | ArmyOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| bridgedOwner | SortOrder | No |
| ownerL2 | SortOrder | No |
| settledOwner | SortOrder | No |
| wonder | SortOrder | No |
| rarityRank | SortOrder | No |
| rarityScore | SortOrder | No |
| imageUrl | SortOrder | No |
| orderType | SortOrder | No |
| lastAttacked | SortOrder | No |
| lastClaimTime | SortOrder | No |
| lastTick | SortOrder | No |
| lastVaultTime | SortOrder | No |
| longitude | SortOrder | No |
| latitude | SortOrder | No |
| _count | RealmCountOrderByAggregateInput | No |
| _avg | RealmAvgOrderByAggregateInput | No |
| _max | RealmMaxOrderByAggregateInput | No |
| _min | RealmMinOrderByAggregateInput | No |
| _sum | RealmSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BuildingWhereInput | BuildingWhereInput[] | No |
| OR | BuildingWhereInput[] | No |
| NOT | BuildingWhereInput | BuildingWhereInput[] | No |
| id | IntFilter | Int | No |
| buildingId | IntFilter | Int | No |
| realmId | IntNullableFilter | Int | Null | Yes |
| eventId | StringFilter | String | No |
| buildingIntegrity | IntFilter | Int | No |
| realm | RealmRelationFilter | RealmWhereInput | Null | Yes |
| builds | StringNullableListFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| buildingId | SortOrder | No |
| realmId | SortOrder | No |
| eventId | SortOrder | No |
| buildingIntegrity | SortOrder | No |
| realm | RealmOrderByWithRelationInput | No |
| builds | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId_buildingId | BuildingRealmIdBuildingIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| buildingId | SortOrder | No |
| realmId | SortOrder | No |
| eventId | SortOrder | No |
| buildingIntegrity | SortOrder | No |
| builds | SortOrder | No |
| _count | BuildingCountOrderByAggregateInput | No |
| _avg | BuildingAvgOrderByAggregateInput | No |
| _max | BuildingMaxOrderByAggregateInput | No |
| _min | BuildingMinOrderByAggregateInput | No |
| _sum | BuildingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BuildingScalarWhereWithAggregatesInput | BuildingScalarWhereWithAggregatesInput[] | No |
| OR | BuildingScalarWhereWithAggregatesInput[] | No |
| NOT | BuildingScalarWhereWithAggregatesInput | BuildingScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| buildingId | IntWithAggregatesFilter | Int | No |
| realmId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| eventId | StringWithAggregatesFilter | String | No |
| buildingIntegrity | IntWithAggregatesFilter | Int | No |
| builds | StringNullableListFilter | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FoodWhereInput | FoodWhereInput[] | No |
| OR | FoodWhereInput[] | No |
| NOT | FoodWhereInput | FoodWhereInput[] | No |
| id | IntFilter | Int | No |
| realmId | IntFilter | Int | No |
| buildingId | IntFilter | Int | No |
| eventId | StringFilter | String | No |
| qty | IntFilter | Int | No |
| harvests | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| buildingId | SortOrder | No |
| eventId | SortOrder | No |
| qty | SortOrder | No |
| harvests | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId_buildingId | FoodRealmIdBuildingIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| buildingId | SortOrder | No |
| eventId | SortOrder | No |
| qty | SortOrder | No |
| harvests | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | FoodCountOrderByAggregateInput | No |
| _avg | FoodAvgOrderByAggregateInput | No |
| _max | FoodMaxOrderByAggregateInput | No |
| _min | FoodMinOrderByAggregateInput | No |
| _sum | FoodSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FoodScalarWhereWithAggregatesInput | FoodScalarWhereWithAggregatesInput[] | No |
| OR | FoodScalarWhereWithAggregatesInput[] | No |
| NOT | FoodScalarWhereWithAggregatesInput | FoodScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| realmId | IntWithAggregatesFilter | Int | No |
| buildingId | IntWithAggregatesFilter | Int | No |
| eventId | StringWithAggregatesFilter | String | No |
| qty | IntWithAggregatesFilter | Int | No |
| harvests | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RelicWhereInput | RelicWhereInput[] | No |
| OR | RelicWhereInput[] | No |
| NOT | RelicWhereInput | RelicWhereInput[] | No |
| realmId | IntFilter | Int | No |
| originRealm | RealmRelationFilter | RealmWhereInput | Null | Yes |
| heldByRealm | IntFilter | Int | No |
| realmHolder | RealmRelationFilter | RealmWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| originRealm | RealmOrderByWithRelationInput | No |
| heldByRealm | SortOrder | No |
| realmHolder | RealmOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| heldByRealm | SortOrder | No |
| _count | RelicCountOrderByAggregateInput | No |
| _avg | RelicAvgOrderByAggregateInput | No |
| _max | RelicMaxOrderByAggregateInput | No |
| _min | RelicMinOrderByAggregateInput | No |
| _sum | RelicSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RelicScalarWhereWithAggregatesInput | RelicScalarWhereWithAggregatesInput[] | No |
| OR | RelicScalarWhereWithAggregatesInput[] | No |
| NOT | RelicScalarWhereWithAggregatesInput | RelicScalarWhereWithAggregatesInput[] | No |
| realmId | IntWithAggregatesFilter | Int | No |
| heldByRealm | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BuildingRealmTraitConstraintWhereInput | BuildingRealmTraitConstraintWhereInput[] | No |
| OR | BuildingRealmTraitConstraintWhereInput[] | No |
| NOT | BuildingRealmTraitConstraintWhereInput | BuildingRealmTraitConstraintWhereInput[] | No |
| buildingId | IntFilter | Int | No |
| traitType | EnumRealmTraitTypeFilter | RealmTraitType | No |
| max | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | SortOrder | No |
| traitType | SortOrder | No |
| max | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | SortOrder | No |
| traitType | SortOrder | No |
| max | SortOrder | No |
| _count | BuildingRealmTraitConstraintCountOrderByAggregateInput | No |
| _avg | BuildingRealmTraitConstraintAvgOrderByAggregateInput | No |
| _max | BuildingRealmTraitConstraintMaxOrderByAggregateInput | No |
| _min | BuildingRealmTraitConstraintMinOrderByAggregateInput | No |
| _sum | BuildingRealmTraitConstraintSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BuildingRealmTraitConstraintScalarWhereWithAggregatesInput | BuildingRealmTraitConstraintScalarWhereWithAggregatesInput[] | No |
| OR | BuildingRealmTraitConstraintScalarWhereWithAggregatesInput[] | No |
| NOT | BuildingRealmTraitConstraintScalarWhereWithAggregatesInput | BuildingRealmTraitConstraintScalarWhereWithAggregatesInput[] | No |
| buildingId | IntWithAggregatesFilter | Int | No |
| traitType | EnumRealmTraitTypeWithAggregatesFilter | RealmTraitType | No |
| max | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ResourceWhereInput | ResourceWhereInput[] | No |
| OR | ResourceWhereInput[] | No |
| NOT | ResourceWhereInput | ResourceWhereInput[] | No |
| id | IntFilter | Int | No |
| resourceId | IntFilter | Int | No |
| realmId | IntNullableFilter | Int | Null | Yes |
| realm | RealmRelationFilter | RealmWhereInput | Null | Yes |
| labor | LaborRelationFilter | LaborWhereInput | Null | Yes |
| level | IntFilter | Int | No |
| upgrades | StringNullableListFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resourceId | SortOrder | No |
| realmId | SortOrder | No |
| realm | RealmOrderByWithRelationInput | No |
| labor | LaborOrderByWithRelationInput | No |
| level | SortOrder | No |
| upgrades | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId_realmId | ResourceResourceIdRealmIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resourceId | SortOrder | No |
| realmId | SortOrder | No |
| level | SortOrder | No |
| upgrades | SortOrder | No |
| _count | ResourceCountOrderByAggregateInput | No |
| _avg | ResourceAvgOrderByAggregateInput | No |
| _max | ResourceMaxOrderByAggregateInput | No |
| _min | ResourceMinOrderByAggregateInput | No |
| _sum | ResourceSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ResourceScalarWhereWithAggregatesInput | ResourceScalarWhereWithAggregatesInput[] | No |
| OR | ResourceScalarWhereWithAggregatesInput[] | No |
| NOT | ResourceScalarWhereWithAggregatesInput | ResourceScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| resourceId | IntWithAggregatesFilter | Int | No |
| realmId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| level | IntWithAggregatesFilter | Int | No |
| upgrades | StringNullableListFilter | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LaborWhereInput | LaborWhereInput[] | No |
| OR | LaborWhereInput[] | No |
| NOT | LaborWhereInput | LaborWhereInput[] | No |
| id | IntFilter | Int | No |
| realmId | IntFilter | Int | No |
| resourceId | IntFilter | Int | No |
| vaultBalance | DateTimeNullableFilter | DateTime | Null | Yes |
| balance | DateTimeNullableFilter | DateTime | Null | Yes |
| lastUpdate | DateTimeNullableFilter | DateTime | Null | Yes |
| lastEventId | StringNullableFilter | String | Null | Yes |
| qtyBuilt | IntFilter | Int | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| resoure | ResourceRelationFilter | ResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| resourceId | SortOrder | No |
| vaultBalance | SortOrder | No |
| balance | SortOrder | No |
| lastUpdate | SortOrder | No |
| lastEventId | SortOrder | No |
| qtyBuilt | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| resoure | ResourceOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId_resourceId | LaborRealmIdResourceIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| resourceId | SortOrder | No |
| vaultBalance | SortOrder | No |
| balance | SortOrder | No |
| lastUpdate | SortOrder | No |
| lastEventId | SortOrder | No |
| qtyBuilt | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | LaborCountOrderByAggregateInput | No |
| _avg | LaborAvgOrderByAggregateInput | No |
| _max | LaborMaxOrderByAggregateInput | No |
| _min | LaborMinOrderByAggregateInput | No |
| _sum | LaborSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LaborScalarWhereWithAggregatesInput | LaborScalarWhereWithAggregatesInput[] | No |
| OR | LaborScalarWhereWithAggregatesInput[] | No |
| NOT | LaborScalarWhereWithAggregatesInput | LaborScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| realmId | IntWithAggregatesFilter | Int | No |
| resourceId | IntWithAggregatesFilter | Int | No |
| vaultBalance | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| balance | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| lastUpdate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| lastEventId | StringNullableWithAggregatesFilter | String | Null | Yes |
| qtyBuilt | IntWithAggregatesFilter | Int | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | WalletBalanceWhereInput | WalletBalanceWhereInput[] | No |
| OR | WalletBalanceWhereInput[] | No |
| NOT | WalletBalanceWhereInput | WalletBalanceWhereInput[] | No |
| id | IntFilter | Int | No |
| address | StringFilter | String | No |
| tokenId | IntFilter | Int | No |
| amount | StringFilter | String | No |
| lastEventId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| address | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| lastEventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address_tokenId | WalletBalanceAddressTokenIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| address | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| lastEventId | SortOrder | No |
| _count | WalletBalanceCountOrderByAggregateInput | No |
| _avg | WalletBalanceAvgOrderByAggregateInput | No |
| _max | WalletBalanceMaxOrderByAggregateInput | No |
| _min | WalletBalanceMinOrderByAggregateInput | No |
| _sum | WalletBalanceSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | WalletBalanceScalarWhereWithAggregatesInput | WalletBalanceScalarWhereWithAggregatesInput[] | No |
| OR | WalletBalanceScalarWhereWithAggregatesInput[] | No |
| NOT | WalletBalanceScalarWhereWithAggregatesInput | WalletBalanceScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| address | StringWithAggregatesFilter | String | No |
| tokenId | IntWithAggregatesFilter | Int | No |
| amount | StringWithAggregatesFilter | String | No |
| lastEventId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | RealmTraitWhereInput | RealmTraitWhereInput[] | No |
| OR | RealmTraitWhereInput[] | No |
| NOT | RealmTraitWhereInput | RealmTraitWhereInput[] | No |
| type | EnumRealmTraitTypeFilter | RealmTraitType | No |
| qty | IntFilter | Int | No |
| realmId | IntFilter | Int | No |
| realm | RealmRelationFilter | RealmWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| type | SortOrder | No |
| qty | SortOrder | No |
| realmId | SortOrder | No |
| realm | RealmOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| type_realmId | RealmTraitTypeRealmIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | SortOrder | No |
| qty | SortOrder | No |
| realmId | SortOrder | No |
| _count | RealmTraitCountOrderByAggregateInput | No |
| _avg | RealmTraitAvgOrderByAggregateInput | No |
| _max | RealmTraitMaxOrderByAggregateInput | No |
| _min | RealmTraitMinOrderByAggregateInput | No |
| _sum | RealmTraitSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RealmTraitScalarWhereWithAggregatesInput | RealmTraitScalarWhereWithAggregatesInput[] | No |
| OR | RealmTraitScalarWhereWithAggregatesInput[] | No |
| NOT | RealmTraitScalarWhereWithAggregatesInput | RealmTraitScalarWhereWithAggregatesInput[] | No |
| type | EnumRealmTraitTypeWithAggregatesFilter | RealmTraitType | No |
| qty | IntWithAggregatesFilter | Int | No |
| realmId | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TroopWhereInput | TroopWhereInput[] | No |
| OR | TroopWhereInput[] | No |
| NOT | TroopWhereInput | TroopWhereInput[] | No |
| realmId | IntFilter | Int | No |
| troopId | IntFilter | Int | No |
| index | IntFilter | Int | No |
| type | IntFilter | Int | No |
| tier | IntFilter | Int | No |
| building | IntFilter | Int | No |
| agility | IntFilter | Int | No |
| attack | IntFilter | Int | No |
| armor | IntFilter | Int | No |
| vitality | IntFilter | Int | No |
| wisdom | IntFilter | Int | No |
| squadSlot | IntFilter | Int | No |
| timestamp | DateTimeNullableFilter | DateTime | Null | Yes |
| Realm | RealmRelationFilter | RealmWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| troopId | SortOrder | No |
| index | SortOrder | No |
| type | SortOrder | No |
| tier | SortOrder | No |
| building | SortOrder | No |
| agility | SortOrder | No |
| attack | SortOrder | No |
| armor | SortOrder | No |
| vitality | SortOrder | No |
| wisdom | SortOrder | No |
| squadSlot | SortOrder | No |
| timestamp | SortOrder | No |
| Realm | RealmOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId_index_squadSlot | TroopRealmIdIndexSquadSlotCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| troopId | SortOrder | No |
| index | SortOrder | No |
| type | SortOrder | No |
| tier | SortOrder | No |
| building | SortOrder | No |
| agility | SortOrder | No |
| attack | SortOrder | No |
| armor | SortOrder | No |
| vitality | SortOrder | No |
| wisdom | SortOrder | No |
| squadSlot | SortOrder | No |
| timestamp | SortOrder | No |
| _count | TroopCountOrderByAggregateInput | No |
| _avg | TroopAvgOrderByAggregateInput | No |
| _max | TroopMaxOrderByAggregateInput | No |
| _min | TroopMinOrderByAggregateInput | No |
| _sum | TroopSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TroopScalarWhereWithAggregatesInput | TroopScalarWhereWithAggregatesInput[] | No |
| OR | TroopScalarWhereWithAggregatesInput[] | No |
| NOT | TroopScalarWhereWithAggregatesInput | TroopScalarWhereWithAggregatesInput[] | No |
| realmId | IntWithAggregatesFilter | Int | No |
| troopId | IntWithAggregatesFilter | Int | No |
| index | IntWithAggregatesFilter | Int | No |
| type | IntWithAggregatesFilter | Int | No |
| tier | IntWithAggregatesFilter | Int | No |
| building | IntWithAggregatesFilter | Int | No |
| agility | IntWithAggregatesFilter | Int | No |
| attack | IntWithAggregatesFilter | Int | No |
| armor | IntWithAggregatesFilter | Int | No |
| vitality | IntWithAggregatesFilter | Int | No |
| wisdom | IntWithAggregatesFilter | Int | No |
| squadSlot | IntWithAggregatesFilter | Int | No |
| timestamp | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | DesiegeWhereInput | DesiegeWhereInput[] | No |
| OR | DesiegeWhereInput[] | No |
| NOT | DesiegeWhereInput | DesiegeWhereInput[] | No |
| id | IntFilter | Int | No |
| gameId | IntFilter | Int | No |
| winner | IntNullableFilter | Int | Null | Yes |
| attackedTokens | IntNullableFilter | Int | Null | Yes |
| defendedTokens | IntNullableFilter | Int | Null | Yes |
| damageInflicted | IntNullableFilter | Int | Null | Yes |
| eventIndexed | StringNullableFilter | String | Null | Yes |
| initialHealth | IntNullableFilter | Int | Null | Yes |
| startBlock | IntFilter | Int | No |
| endBlock | IntFilter | Int | No |
| startedOn | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| winner | SortOrder | No |
| attackedTokens | SortOrder | No |
| defendedTokens | SortOrder | No |
| damageInflicted | SortOrder | No |
| eventIndexed | SortOrder | No |
| initialHealth | SortOrder | No |
| startBlock | SortOrder | No |
| endBlock | SortOrder | No |
| startedOn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| winner | SortOrder | No |
| attackedTokens | SortOrder | No |
| defendedTokens | SortOrder | No |
| damageInflicted | SortOrder | No |
| eventIndexed | SortOrder | No |
| initialHealth | SortOrder | No |
| startBlock | SortOrder | No |
| endBlock | SortOrder | No |
| startedOn | SortOrder | No |
| _count | DesiegeCountOrderByAggregateInput | No |
| _avg | DesiegeAvgOrderByAggregateInput | No |
| _max | DesiegeMaxOrderByAggregateInput | No |
| _min | DesiegeMinOrderByAggregateInput | No |
| _sum | DesiegeSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DesiegeScalarWhereWithAggregatesInput | DesiegeScalarWhereWithAggregatesInput[] | No |
| OR | DesiegeScalarWhereWithAggregatesInput[] | No |
| NOT | DesiegeScalarWhereWithAggregatesInput | DesiegeScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| gameId | IntWithAggregatesFilter | Int | No |
| winner | IntNullableWithAggregatesFilter | Int | Null | Yes |
| attackedTokens | IntNullableWithAggregatesFilter | Int | Null | Yes |
| defendedTokens | IntNullableWithAggregatesFilter | Int | Null | Yes |
| damageInflicted | IntNullableWithAggregatesFilter | Int | Null | Yes |
| eventIndexed | StringNullableWithAggregatesFilter | String | Null | Yes |
| initialHealth | IntNullableWithAggregatesFilter | Int | Null | Yes |
| startBlock | IntWithAggregatesFilter | Int | No |
| endBlock | IntWithAggregatesFilter | Int | No |
| startedOn | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | DesiegeActionWhereInput | DesiegeActionWhereInput[] | No |
| OR | DesiegeActionWhereInput[] | No |
| NOT | DesiegeActionWhereInput | DesiegeActionWhereInput[] | No |
| id | IntFilter | Int | No |
| gameId | IntFilter | Int | No |
| account | StringFilter | String | No |
| amount | IntFilter | Int | No |
| amountBoosted | IntFilter | Int | No |
| tokenOffset | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| account | SortOrder | No |
| amount | SortOrder | No |
| amountBoosted | SortOrder | No |
| tokenOffset | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| account | SortOrder | No |
| amount | SortOrder | No |
| amountBoosted | SortOrder | No |
| tokenOffset | SortOrder | No |
| _count | DesiegeActionCountOrderByAggregateInput | No |
| _avg | DesiegeActionAvgOrderByAggregateInput | No |
| _max | DesiegeActionMaxOrderByAggregateInput | No |
| _min | DesiegeActionMinOrderByAggregateInput | No |
| _sum | DesiegeActionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DesiegeActionScalarWhereWithAggregatesInput | DesiegeActionScalarWhereWithAggregatesInput[] | No |
| OR | DesiegeActionScalarWhereWithAggregatesInput[] | No |
| NOT | DesiegeActionScalarWhereWithAggregatesInput | DesiegeActionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| gameId | IntWithAggregatesFilter | Int | No |
| account | StringWithAggregatesFilter | String | No |
| amount | IntWithAggregatesFilter | Int | No |
| amountBoosted | IntWithAggregatesFilter | Int | No |
| tokenOffset | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventWhereInput | EventWhereInput[] | No |
| OR | EventWhereInput[] | No |
| NOT | EventWhereInput | EventWhereInput[] | No |
| id | IntFilter | Int | No |
| eventId | StringFilter | String | No |
| blockNumber | IntFilter | Int | No |
| transactionNumber | IntFilter | Int | No |
| chainId | StringFilter | String | No |
| contract | StringFilter | String | No |
| name | StringFilter | String | No |
| parameters | StringNullableListFilter | No |
| keys | StringNullableListFilter | No |
| timestamp | DateTimeFilter | DateTime | No |
| txHash | StringFilter | String | No |
| status | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| chainId | SortOrder | No |
| contract | SortOrder | No |
| name | SortOrder | No |
| parameters | SortOrder | No |
| keys | SortOrder | No |
| timestamp | SortOrder | No |
| txHash | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| chainId | SortOrder | No |
| contract | SortOrder | No |
| name | SortOrder | No |
| parameters | SortOrder | No |
| keys | SortOrder | No |
| timestamp | SortOrder | No |
| txHash | SortOrder | No |
| status | SortOrder | No |
| _count | EventCountOrderByAggregateInput | No |
| _avg | EventAvgOrderByAggregateInput | No |
| _max | EventMaxOrderByAggregateInput | No |
| _min | EventMinOrderByAggregateInput | No |
| _sum | EventSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] | No |
| OR | EventScalarWhereWithAggregatesInput[] | No |
| NOT | EventScalarWhereWithAggregatesInput | EventScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| eventId | StringWithAggregatesFilter | String | No |
| blockNumber | IntWithAggregatesFilter | Int | No |
| transactionNumber | IntWithAggregatesFilter | Int | No |
| chainId | StringWithAggregatesFilter | String | No |
| contract | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| parameters | StringNullableListFilter | No |
| keys | StringNullableListFilter | No |
| timestamp | DateTimeWithAggregatesFilter | DateTime | No |
| txHash | StringWithAggregatesFilter | String | No |
| status | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LastIndexedEventWhereInput | LastIndexedEventWhereInput[] | No |
| OR | LastIndexedEventWhereInput[] | No |
| NOT | LastIndexedEventWhereInput | LastIndexedEventWhereInput[] | No |
| moduleName | StringFilter | String | No |
| eventId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | SortOrder | No |
| eventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | SortOrder | No |
| eventId | SortOrder | No |
| _count | LastIndexedEventCountOrderByAggregateInput | No |
| _max | LastIndexedEventMaxOrderByAggregateInput | No |
| _min | LastIndexedEventMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LastIndexedEventScalarWhereWithAggregatesInput | LastIndexedEventScalarWhereWithAggregatesInput[] | No |
| OR | LastIndexedEventScalarWhereWithAggregatesInput[] | No |
| NOT | LastIndexedEventScalarWhereWithAggregatesInput | LastIndexedEventScalarWhereWithAggregatesInput[] | No |
| moduleName | StringWithAggregatesFilter | String | No |
| eventId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LoreEntityWhereInput | LoreEntityWhereInput[] | No |
| OR | LoreEntityWhereInput[] | No |
| NOT | LoreEntityWhereInput | LoreEntityWhereInput[] | No |
| id | IntFilter | Int | No |
| owner | StringNullableFilter | String | Null | Yes |
| ownerDisplayName | StringNullableFilter | String | Null | Yes |
| kind | IntFilter | Int | No |
| eventIndexed | StringNullableFilter | String | Null | Yes |
| revisions | LoreEntityRevisionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| owner | SortOrder | No |
| ownerDisplayName | SortOrder | No |
| kind | SortOrder | No |
| eventIndexed | SortOrder | No |
| revisions | LoreEntityRevisionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| owner | SortOrder | No |
| ownerDisplayName | SortOrder | No |
| kind | SortOrder | No |
| eventIndexed | SortOrder | No |
| _count | LoreEntityCountOrderByAggregateInput | No |
| _avg | LoreEntityAvgOrderByAggregateInput | No |
| _max | LoreEntityMaxOrderByAggregateInput | No |
| _min | LoreEntityMinOrderByAggregateInput | No |
| _sum | LoreEntitySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LoreEntityScalarWhereWithAggregatesInput | LoreEntityScalarWhereWithAggregatesInput[] | No |
| OR | LoreEntityScalarWhereWithAggregatesInput[] | No |
| NOT | LoreEntityScalarWhereWithAggregatesInput | LoreEntityScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| owner | StringNullableWithAggregatesFilter | String | Null | Yes |
| ownerDisplayName | StringNullableWithAggregatesFilter | String | Null | Yes |
| kind | IntWithAggregatesFilter | Int | No |
| eventIndexed | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | LoreEntityRevisionWhereInput | LoreEntityRevisionWhereInput[] | No |
| OR | LoreEntityRevisionWhereInput[] | No |
| NOT | LoreEntityRevisionWhereInput | LoreEntityRevisionWhereInput[] | No |
| id | IntFilter | Int | No |
| revisionNumber | IntFilter | Int | No |
| arweaveId | StringFilter | String | No |
| title | StringNullableFilter | String | Null | Yes |
| markdown | StringNullableFilter | String | Null | Yes |
| excerpt | StringNullableFilter | String | Null | Yes |
| media_url | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeNullableFilter | DateTime | Null | Yes |
| entity | LoreEntityRelationFilter | LoreEntityWhereInput | No |
| entityId | IntFilter | Int | No |
| eventIndexed | StringNullableFilter | String | Null | Yes |
| pois | LorePoisOnEntityRevisionsListRelationFilter | No |
| props | LorePropsOnEntityRevisionsListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| revisionNumber | SortOrder | No |
| arweaveId | SortOrder | No |
| title | SortOrder | No |
| markdown | SortOrder | No |
| excerpt | SortOrder | No |
| media_url | SortOrder | No |
| createdAt | SortOrder | No |
| entity | LoreEntityOrderByWithRelationInput | No |
| entityId | SortOrder | No |
| eventIndexed | SortOrder | No |
| pois | LorePoisOnEntityRevisionsOrderByRelationAggregateInput | No |
| props | LorePropsOnEntityRevisionsOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| revisionNumber | SortOrder | No |
| arweaveId | SortOrder | No |
| title | SortOrder | No |
| markdown | SortOrder | No |
| excerpt | SortOrder | No |
| media_url | SortOrder | No |
| createdAt | SortOrder | No |
| entityId | SortOrder | No |
| eventIndexed | SortOrder | No |
| _count | LoreEntityRevisionCountOrderByAggregateInput | No |
| _avg | LoreEntityRevisionAvgOrderByAggregateInput | No |
| _max | LoreEntityRevisionMaxOrderByAggregateInput | No |
| _min | LoreEntityRevisionMinOrderByAggregateInput | No |
| _sum | LoreEntityRevisionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LoreEntityRevisionScalarWhereWithAggregatesInput | LoreEntityRevisionScalarWhereWithAggregatesInput[] | No |
| OR | LoreEntityRevisionScalarWhereWithAggregatesInput[] | No |
| NOT | LoreEntityRevisionScalarWhereWithAggregatesInput | LoreEntityRevisionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| revisionNumber | IntWithAggregatesFilter | Int | No |
| arweaveId | StringWithAggregatesFilter | String | No |
| title | StringNullableWithAggregatesFilter | String | Null | Yes |
| markdown | StringNullableWithAggregatesFilter | String | Null | Yes |
| excerpt | StringNullableWithAggregatesFilter | String | Null | Yes |
| media_url | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| entityId | IntWithAggregatesFilter | Int | No |
| eventIndexed | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePOIWhereInput | LorePOIWhereInput[] | No |
| OR | LorePOIWhereInput[] | No |
| NOT | LorePOIWhereInput | LorePOIWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| assetType | StringNullableFilter | String | Null | Yes |
| entities | LorePoisOnEntityRevisionsListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| assetType | SortOrder | No |
| entities | LorePoisOnEntityRevisionsOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| assetType | SortOrder | No |
| _count | LorePOICountOrderByAggregateInput | No |
| _avg | LorePOIAvgOrderByAggregateInput | No |
| _max | LorePOIMaxOrderByAggregateInput | No |
| _min | LorePOIMinOrderByAggregateInput | No |
| _sum | LorePOISumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePOIScalarWhereWithAggregatesInput | LorePOIScalarWhereWithAggregatesInput[] | No |
| OR | LorePOIScalarWhereWithAggregatesInput[] | No |
| NOT | LorePOIScalarWhereWithAggregatesInput | LorePOIScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| assetType | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePropWhereInput | LorePropWhereInput[] | No |
| OR | LorePropWhereInput[] | No |
| NOT | LorePropWhereInput | LorePropWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| entities | LorePropsOnEntityRevisionsListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| entities | LorePropsOnEntityRevisionsOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| _count | LorePropCountOrderByAggregateInput | No |
| _avg | LorePropAvgOrderByAggregateInput | No |
| _max | LorePropMaxOrderByAggregateInput | No |
| _min | LorePropMinOrderByAggregateInput | No |
| _sum | LorePropSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePropScalarWhereWithAggregatesInput | LorePropScalarWhereWithAggregatesInput[] | No |
| OR | LorePropScalarWhereWithAggregatesInput[] | No |
| NOT | LorePropScalarWhereWithAggregatesInput | LorePropScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePoisOnEntityRevisionsWhereInput | LorePoisOnEntityRevisionsWhereInput[] | No |
| OR | LorePoisOnEntityRevisionsWhereInput[] | No |
| NOT | LorePoisOnEntityRevisionsWhereInput | LorePoisOnEntityRevisionsWhereInput[] | No |
| id | IntFilter | Int | No |
| entityRevision | LoreEntityRevisionRelationFilter | LoreEntityRevisionWhereInput | No |
| entityRevisionId | IntFilter | Int | No |
| poi | LorePOIRelationFilter | LorePOIWhereInput | No |
| poiId | IntFilter | Int | No |
| assetId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevision | LoreEntityRevisionOrderByWithRelationInput | No |
| entityRevisionId | SortOrder | No |
| poi | LorePOIOrderByWithRelationInput | No |
| poiId | SortOrder | No |
| assetId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| poiId | SortOrder | No |
| assetId | SortOrder | No |
| _count | LorePoisOnEntityRevisionsCountOrderByAggregateInput | No |
| _avg | LorePoisOnEntityRevisionsAvgOrderByAggregateInput | No |
| _max | LorePoisOnEntityRevisionsMaxOrderByAggregateInput | No |
| _min | LorePoisOnEntityRevisionsMinOrderByAggregateInput | No |
| _sum | LorePoisOnEntityRevisionsSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePoisOnEntityRevisionsScalarWhereWithAggregatesInput | LorePoisOnEntityRevisionsScalarWhereWithAggregatesInput[] | No |
| OR | LorePoisOnEntityRevisionsScalarWhereWithAggregatesInput[] | No |
| NOT | LorePoisOnEntityRevisionsScalarWhereWithAggregatesInput | LorePoisOnEntityRevisionsScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| entityRevisionId | IntWithAggregatesFilter | Int | No |
| poiId | IntWithAggregatesFilter | Int | No |
| assetId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePropsOnEntityRevisionsWhereInput | LorePropsOnEntityRevisionsWhereInput[] | No |
| OR | LorePropsOnEntityRevisionsWhereInput[] | No |
| NOT | LorePropsOnEntityRevisionsWhereInput | LorePropsOnEntityRevisionsWhereInput[] | No |
| id | IntFilter | Int | No |
| entityRevision | LoreEntityRevisionRelationFilter | LoreEntityRevisionWhereInput | No |
| entityRevisionId | IntFilter | Int | No |
| prop | LorePropRelationFilter | LorePropWhereInput | No |
| propId | IntFilter | Int | No |
| value | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevision | LoreEntityRevisionOrderByWithRelationInput | No |
| entityRevisionId | SortOrder | No |
| prop | LorePropOrderByWithRelationInput | No |
| propId | SortOrder | No |
| value | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| propId | SortOrder | No |
| value | SortOrder | No |
| _count | LorePropsOnEntityRevisionsCountOrderByAggregateInput | No |
| _avg | LorePropsOnEntityRevisionsAvgOrderByAggregateInput | No |
| _max | LorePropsOnEntityRevisionsMaxOrderByAggregateInput | No |
| _min | LorePropsOnEntityRevisionsMinOrderByAggregateInput | No |
| _sum | LorePropsOnEntityRevisionsSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePropsOnEntityRevisionsScalarWhereWithAggregatesInput | LorePropsOnEntityRevisionsScalarWhereWithAggregatesInput[] | No |
| OR | LorePropsOnEntityRevisionsScalarWhereWithAggregatesInput[] | No |
| NOT | LorePropsOnEntityRevisionsScalarWhereWithAggregatesInput | LorePropsOnEntityRevisionsScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| entityRevisionId | IntWithAggregatesFilter | Int | No |
| propId | IntWithAggregatesFilter | Int | No |
| value | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ExchangeRateWhereInput | ExchangeRateWhereInput[] | No |
| OR | ExchangeRateWhereInput[] | No |
| NOT | ExchangeRateWhereInput | ExchangeRateWhereInput[] | No |
| date | StringFilter | String | No |
| hour | IntFilter | Int | No |
| tokenId | IntFilter | Int | No |
| amount | StringFilter | String | No |
| buyAmount | StringFilter | String | No |
| sellAmount | StringFilter | String | No |
| currencyReserve | StringFilter | String | No |
| tokenReserve | StringFilter | String | No |
| lpAmount | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| date | SortOrder | No |
| hour | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| buyAmount | SortOrder | No |
| sellAmount | SortOrder | No |
| currencyReserve | SortOrder | No |
| tokenReserve | SortOrder | No |
| lpAmount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| date_hour_tokenId | ExchangeRateDateHourTokenIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| date | SortOrder | No |
| hour | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| buyAmount | SortOrder | No |
| sellAmount | SortOrder | No |
| currencyReserve | SortOrder | No |
| tokenReserve | SortOrder | No |
| lpAmount | SortOrder | No |
| _count | ExchangeRateCountOrderByAggregateInput | No |
| _avg | ExchangeRateAvgOrderByAggregateInput | No |
| _max | ExchangeRateMaxOrderByAggregateInput | No |
| _min | ExchangeRateMinOrderByAggregateInput | No |
| _sum | ExchangeRateSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ExchangeRateScalarWhereWithAggregatesInput | ExchangeRateScalarWhereWithAggregatesInput[] | No |
| OR | ExchangeRateScalarWhereWithAggregatesInput[] | No |
| NOT | ExchangeRateScalarWhereWithAggregatesInput | ExchangeRateScalarWhereWithAggregatesInput[] | No |
| date | StringWithAggregatesFilter | String | No |
| hour | IntWithAggregatesFilter | Int | No |
| tokenId | IntWithAggregatesFilter | Int | No |
| amount | StringWithAggregatesFilter | String | No |
| buyAmount | StringWithAggregatesFilter | String | No |
| sellAmount | StringWithAggregatesFilter | String | No |
| currencyReserve | StringWithAggregatesFilter | String | No |
| tokenReserve | StringWithAggregatesFilter | String | No |
| lpAmount | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RealmHistoryWhereInput | RealmHistoryWhereInput[] | No |
| OR | RealmHistoryWhereInput[] | No |
| NOT | RealmHistoryWhereInput | RealmHistoryWhereInput[] | No |
| id | IntFilter | Int | No |
| eventId | StringFilter | String | No |
| eventType | StringFilter | String | No |
| realmId | IntFilter | Int | No |
| realmOwner | StringFilter | String | No |
| realmName | StringFilter | String | No |
| realmOrder | EnumOrderTypeNullableFilter | OrderType | Null | Yes |
| data | JsonFilter | No |
| timestamp | DateTimeFilter | DateTime | No |
| transactionHash | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| realmId | SortOrder | No |
| realmOwner | SortOrder | No |
| realmName | SortOrder | No |
| realmOrder | SortOrder | No |
| data | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId_eventType | RealmHistoryEventIdEventTypeCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| realmId | SortOrder | No |
| realmOwner | SortOrder | No |
| realmName | SortOrder | No |
| realmOrder | SortOrder | No |
| data | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| _count | RealmHistoryCountOrderByAggregateInput | No |
| _avg | RealmHistoryAvgOrderByAggregateInput | No |
| _max | RealmHistoryMaxOrderByAggregateInput | No |
| _min | RealmHistoryMinOrderByAggregateInput | No |
| _sum | RealmHistorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RealmHistoryScalarWhereWithAggregatesInput | RealmHistoryScalarWhereWithAggregatesInput[] | No |
| OR | RealmHistoryScalarWhereWithAggregatesInput[] | No |
| NOT | RealmHistoryScalarWhereWithAggregatesInput | RealmHistoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| eventId | StringWithAggregatesFilter | String | No |
| eventType | StringWithAggregatesFilter | String | No |
| realmId | IntWithAggregatesFilter | Int | No |
| realmOwner | StringWithAggregatesFilter | String | No |
| realmName | StringWithAggregatesFilter | String | No |
| realmOrder | EnumOrderTypeNullableWithAggregatesFilter | OrderType | Null | Yes |
| data | JsonWithAggregatesFilter | No |
| timestamp | DateTimeWithAggregatesFilter | DateTime | No |
| transactionHash | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CombatHistoryWhereInput | CombatHistoryWhereInput[] | No |
| OR | CombatHistoryWhereInput[] | No |
| NOT | CombatHistoryWhereInput | CombatHistoryWhereInput[] | No |
| id | IntFilter | Int | No |
| eventId | StringFilter | String | No |
| eventType | StringFilter | String | No |
| attackRealmId | IntFilter | Int | No |
| attackRealmOwner | StringFilter | String | No |
| attackSquad | JsonFilter | No |
| defendRealmId | IntFilter | Int | No |
| defendRealmOwner | StringFilter | String | No |
| defendSquad | JsonFilter | No |
| timestamp | DateTimeFilter | DateTime | No |
| transactionHash | StringFilter | String | No |
| outcome | IntFilter | Int | No |
| attackType | IntFilter | Int | No |
| hitPoints | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| attackRealmId | SortOrder | No |
| attackRealmOwner | SortOrder | No |
| attackSquad | SortOrder | No |
| defendRealmId | SortOrder | No |
| defendRealmOwner | SortOrder | No |
| defendSquad | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| outcome | SortOrder | No |
| attackType | SortOrder | No |
| hitPoints | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| defendRealmId_eventId | CombatHistoryDefendRealmIdEventIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| attackRealmId | SortOrder | No |
| attackRealmOwner | SortOrder | No |
| attackSquad | SortOrder | No |
| defendRealmId | SortOrder | No |
| defendRealmOwner | SortOrder | No |
| defendSquad | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| outcome | SortOrder | No |
| attackType | SortOrder | No |
| hitPoints | SortOrder | No |
| _count | CombatHistoryCountOrderByAggregateInput | No |
| _avg | CombatHistoryAvgOrderByAggregateInput | No |
| _max | CombatHistoryMaxOrderByAggregateInput | No |
| _min | CombatHistoryMinOrderByAggregateInput | No |
| _sum | CombatHistorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CombatHistoryScalarWhereWithAggregatesInput | CombatHistoryScalarWhereWithAggregatesInput[] | No |
| OR | CombatHistoryScalarWhereWithAggregatesInput[] | No |
| NOT | CombatHistoryScalarWhereWithAggregatesInput | CombatHistoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| eventId | StringWithAggregatesFilter | String | No |
| eventType | StringWithAggregatesFilter | String | No |
| attackRealmId | IntWithAggregatesFilter | Int | No |
| attackRealmOwner | StringWithAggregatesFilter | String | No |
| attackSquad | JsonWithAggregatesFilter | No |
| defendRealmId | IntWithAggregatesFilter | Int | No |
| defendRealmOwner | StringWithAggregatesFilter | String | No |
| defendSquad | JsonWithAggregatesFilter | No |
| timestamp | DateTimeWithAggregatesFilter | DateTime | No |
| transactionHash | StringWithAggregatesFilter | String | No |
| outcome | IntWithAggregatesFilter | Int | No |
| attackType | IntWithAggregatesFilter | Int | No |
| hitPoints | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ResourceTransferWhereInput | ResourceTransferWhereInput[] | No |
| OR | ResourceTransferWhereInput[] | No |
| NOT | ResourceTransferWhereInput | ResourceTransferWhereInput[] | No |
| resourceId | IntFilter | Int | No |
| eventId | StringFilter | String | No |
| blockNumber | IntFilter | Int | No |
| transactionNumber | IntFilter | Int | No |
| fromAddress | StringFilter | String | No |
| toAddress | StringFilter | String | No |
| amount | StringFilter | String | No |
| amountValue | DecimalFilter | Decimal | No |
| transactionHash | StringFilter | String | No |
| timestamp | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| fromAddress | SortOrder | No |
| toAddress | SortOrder | No |
| amount | SortOrder | No |
| amountValue | SortOrder | No |
| transactionHash | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId_eventId | ResourceTransferResourceIdEventIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| fromAddress | SortOrder | No |
| toAddress | SortOrder | No |
| amount | SortOrder | No |
| amountValue | SortOrder | No |
| transactionHash | SortOrder | No |
| timestamp | SortOrder | No |
| _count | ResourceTransferCountOrderByAggregateInput | No |
| _avg | ResourceTransferAvgOrderByAggregateInput | No |
| _max | ResourceTransferMaxOrderByAggregateInput | No |
| _min | ResourceTransferMinOrderByAggregateInput | No |
| _sum | ResourceTransferSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ResourceTransferScalarWhereWithAggregatesInput | ResourceTransferScalarWhereWithAggregatesInput[] | No |
| OR | ResourceTransferScalarWhereWithAggregatesInput[] | No |
| NOT | ResourceTransferScalarWhereWithAggregatesInput | ResourceTransferScalarWhereWithAggregatesInput[] | No |
| resourceId | IntWithAggregatesFilter | Int | No |
| eventId | StringWithAggregatesFilter | String | No |
| blockNumber | IntWithAggregatesFilter | Int | No |
| transactionNumber | IntWithAggregatesFilter | Int | No |
| fromAddress | StringWithAggregatesFilter | String | No |
| toAddress | StringWithAggregatesFilter | String | No |
| amount | StringWithAggregatesFilter | String | No |
| amountValue | DecimalWithAggregatesFilter | Decimal | No |
| transactionHash | StringWithAggregatesFilter | String | No |
| timestamp | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ArmyWhereInput | ArmyWhereInput[] | No |
| OR | ArmyWhereInput[] | No |
| NOT | ArmyWhereInput | ArmyWhereInput[] | No |
| realmId | IntFilter | Int | No |
| armyId | IntFilter | Int | No |
| destinationRealmId | IntFilter | Int | No |
| destinationArrivalTime | DateTimeNullableFilter | DateTime | Null | Yes |
| armyPacked | IntFilter | Int | No |
| lastAttacked | DateTimeNullableFilter | DateTime | Null | Yes |
| xp | IntFilter | Int | No |
| level | IntFilter | Int | No |
| callSign | IntFilter | Int | No |
| lightCavalryQty | IntFilter | Int | No |
| lightCavalryHealth | IntFilter | Int | No |
| heavyCavalryQty | IntFilter | Int | No |
| heavyCavalryHealth | IntFilter | Int | No |
| archerQty | IntFilter | Int | No |
| archerHealth | IntFilter | Int | No |
| longbowQty | IntFilter | Int | No |
| longbowHealth | IntFilter | Int | No |
| mageQty | IntFilter | Int | No |
| mageHealth | IntFilter | Int | No |
| arcanistQty | IntFilter | Int | No |
| arcanistHealth | IntFilter | Int | No |
| lightInfantryQty | IntFilter | Int | No |
| lightInfantryHealth | IntFilter | Int | No |
| heavyInfantryQty | IntFilter | Int | No |
| heavyInfantryHealth | IntFilter | Int | No |
| ownRealm | RealmRelationFilter | RealmWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| armyId | SortOrder | No |
| destinationRealmId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| armyPacked | SortOrder | No |
| lastAttacked | SortOrder | No |
| xp | SortOrder | No |
| level | SortOrder | No |
| callSign | SortOrder | No |
| lightCavalryQty | SortOrder | No |
| lightCavalryHealth | SortOrder | No |
| heavyCavalryQty | SortOrder | No |
| heavyCavalryHealth | SortOrder | No |
| archerQty | SortOrder | No |
| archerHealth | SortOrder | No |
| longbowQty | SortOrder | No |
| longbowHealth | SortOrder | No |
| mageQty | SortOrder | No |
| mageHealth | SortOrder | No |
| arcanistQty | SortOrder | No |
| arcanistHealth | SortOrder | No |
| lightInfantryQty | SortOrder | No |
| lightInfantryHealth | SortOrder | No |
| heavyInfantryQty | SortOrder | No |
| heavyInfantryHealth | SortOrder | No |
| ownRealm | RealmOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId_armyId | ArmyRealmIdArmyIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| armyId | SortOrder | No |
| destinationRealmId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| armyPacked | SortOrder | No |
| lastAttacked | SortOrder | No |
| xp | SortOrder | No |
| level | SortOrder | No |
| callSign | SortOrder | No |
| lightCavalryQty | SortOrder | No |
| lightCavalryHealth | SortOrder | No |
| heavyCavalryQty | SortOrder | No |
| heavyCavalryHealth | SortOrder | No |
| archerQty | SortOrder | No |
| archerHealth | SortOrder | No |
| longbowQty | SortOrder | No |
| longbowHealth | SortOrder | No |
| mageQty | SortOrder | No |
| mageHealth | SortOrder | No |
| arcanistQty | SortOrder | No |
| arcanistHealth | SortOrder | No |
| lightInfantryQty | SortOrder | No |
| lightInfantryHealth | SortOrder | No |
| heavyInfantryQty | SortOrder | No |
| heavyInfantryHealth | SortOrder | No |
| _count | ArmyCountOrderByAggregateInput | No |
| _avg | ArmyAvgOrderByAggregateInput | No |
| _max | ArmyMaxOrderByAggregateInput | No |
| _min | ArmyMinOrderByAggregateInput | No |
| _sum | ArmySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TravelWhereInput | TravelWhereInput[] | No |
| OR | TravelWhereInput[] | No |
| NOT | TravelWhereInput | TravelWhereInput[] | No |
| eventId | StringFilter | String | No |
| contractId | IntFilter | Int | No |
| tokenId | IntFilter | Int | No |
| nestedId | IntFilter | Int | No |
| locationContractId | IntFilter | Int | No |
| locationTokenId | IntFilter | Int | No |
| locationNestedId | IntFilter | Int | No |
| destinationContractId | IntFilter | Int | No |
| destinationTokenId | IntFilter | Int | No |
| destinationNestedId | IntFilter | Int | No |
| destinationArrivalTime | DateTimeFilter | DateTime | No |
| timestamp | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| contractId | SortOrder | No |
| tokenId | SortOrder | No |
| nestedId | SortOrder | No |
| locationContractId | SortOrder | No |
| locationTokenId | SortOrder | No |
| locationNestedId | SortOrder | No |
| destinationContractId | SortOrder | No |
| destinationTokenId | SortOrder | No |
| destinationNestedId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| contractId | SortOrder | No |
| tokenId | SortOrder | No |
| nestedId | SortOrder | No |
| locationContractId | SortOrder | No |
| locationTokenId | SortOrder | No |
| locationNestedId | SortOrder | No |
| destinationContractId | SortOrder | No |
| destinationTokenId | SortOrder | No |
| destinationNestedId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| timestamp | SortOrder | No |
| _count | TravelCountOrderByAggregateInput | No |
| _avg | TravelAvgOrderByAggregateInput | No |
| _max | TravelMaxOrderByAggregateInput | No |
| _min | TravelMinOrderByAggregateInput | No |
| _sum | TravelSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TravelScalarWhereWithAggregatesInput | TravelScalarWhereWithAggregatesInput[] | No |
| OR | TravelScalarWhereWithAggregatesInput[] | No |
| NOT | TravelScalarWhereWithAggregatesInput | TravelScalarWhereWithAggregatesInput[] | No |
| eventId | StringWithAggregatesFilter | String | No |
| contractId | IntWithAggregatesFilter | Int | No |
| tokenId | IntWithAggregatesFilter | Int | No |
| nestedId | IntWithAggregatesFilter | Int | No |
| locationContractId | IntWithAggregatesFilter | Int | No |
| locationTokenId | IntWithAggregatesFilter | Int | No |
| locationNestedId | IntWithAggregatesFilter | Int | No |
| destinationContractId | IntWithAggregatesFilter | Int | No |
| destinationTokenId | IntWithAggregatesFilter | Int | No |
| destinationNestedId | IntWithAggregatesFilter | Int | No |
| destinationArrivalTime | DateTimeWithAggregatesFilter | DateTime | No |
| timestamp | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ExchangeEventWhereInput | ExchangeEventWhereInput[] | No |
| OR | ExchangeEventWhereInput[] | No |
| NOT | ExchangeEventWhereInput | ExchangeEventWhereInput[] | No |
| eventId | StringFilter | String | No |
| type | EnumExchangeEventTypeFilter | ExchangeEventType | No |
| resourceId | IntFilter | Int | No |
| address | StringFilter | String | No |
| currencyAmount | StringFilter | String | No |
| currencyAmountValue | DecimalFilter | Decimal | No |
| resourceAmount | StringFilter | String | No |
| resourceAmountValue | DecimalFilter | Decimal | No |
| timestamp | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| type | SortOrder | No |
| resourceId | SortOrder | No |
| address | SortOrder | No |
| currencyAmount | SortOrder | No |
| currencyAmountValue | SortOrder | No |
| resourceAmount | SortOrder | No |
| resourceAmountValue | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| type | SortOrder | No |
| resourceId | SortOrder | No |
| address | SortOrder | No |
| currencyAmount | SortOrder | No |
| currencyAmountValue | SortOrder | No |
| resourceAmount | SortOrder | No |
| resourceAmountValue | SortOrder | No |
| timestamp | SortOrder | No |
| _count | ExchangeEventCountOrderByAggregateInput | No |
| _avg | ExchangeEventAvgOrderByAggregateInput | No |
| _max | ExchangeEventMaxOrderByAggregateInput | No |
| _min | ExchangeEventMinOrderByAggregateInput | No |
| _sum | ExchangeEventSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ExchangeEventScalarWhereWithAggregatesInput | ExchangeEventScalarWhereWithAggregatesInput[] | No |
| OR | ExchangeEventScalarWhereWithAggregatesInput[] | No |
| NOT | ExchangeEventScalarWhereWithAggregatesInput | ExchangeEventScalarWhereWithAggregatesInput[] | No |
| eventId | StringWithAggregatesFilter | String | No |
| type | EnumExchangeEventTypeWithAggregatesFilter | ExchangeEventType | No |
| resourceId | IntWithAggregatesFilter | Int | No |
| address | StringWithAggregatesFilter | String | No |
| currencyAmount | StringWithAggregatesFilter | String | No |
| currencyAmountValue | DecimalWithAggregatesFilter | Decimal | No |
| resourceAmount | StringWithAggregatesFilter | String | No |
| resourceAmountValue | DecimalWithAggregatesFilter | Decimal | No |
| timestamp | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | No |
| realmsL1 | RealmCreateNestedManyWithoutWalletInput | No |
| realmsL2 | RealmCreateNestedManyWithoutWalletL2Input | No |
| realmsSettled | RealmCreateNestedManyWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| realmsL1 | RealmUncheckedCreateNestedManyWithoutWalletInput | No |
| realmsL2 | RealmUncheckedCreateNestedManyWithoutWalletL2Input | No |
| realmsSettled | RealmUncheckedCreateNestedManyWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL1 | RealmUpdateManyWithoutWalletNestedInput | No |
| realmsL2 | RealmUpdateManyWithoutWalletL2NestedInput | No |
| realmsSettled | RealmUpdateManyWithoutWalletSettledNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL1 | RealmUncheckedUpdateManyWithoutWalletNestedInput | No |
| realmsL2 | RealmUncheckedUpdateManyWithoutWalletL2NestedInput | No |
| realmsSettled | RealmUncheckedUpdateManyWithoutWalletSettledNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | Null | Yes |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bridgedOwner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| wonder | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| rarityRank | Int | IntFieldUpdateOperationsInput | No |
| rarityScore | Float | FloatFieldUpdateOperationsInput | No |
| imageUrl | String | StringFieldUpdateOperationsInput | No |
| orderType | OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null | Yes |
| lastAttacked | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastClaimTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastTick | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastVaultTime | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| eventId | String | No |
| buildingIntegrity | Int | No |
| realm | RealmCreateNestedOneWithoutBuildingsInput | No |
| builds | BuildingCreatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| buildingId | Int | No |
| realmId | Int | Null | Yes |
| eventId | String | No |
| buildingIntegrity | Int | No |
| builds | BuildingCreatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| buildingIntegrity | Int | IntFieldUpdateOperationsInput | No |
| realm | RealmUpdateOneWithoutBuildingsNestedInput | No |
| builds | BuildingUpdatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventId | String | StringFieldUpdateOperationsInput | No |
| buildingIntegrity | Int | IntFieldUpdateOperationsInput | No |
| builds | BuildingUpdatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| buildingId | Int | No |
| realmId | Int | Null | Yes |
| eventId | String | No |
| buildingIntegrity | Int | No |
| builds | BuildingCreatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| buildingIntegrity | Int | IntFieldUpdateOperationsInput | No |
| builds | BuildingUpdatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventId | String | StringFieldUpdateOperationsInput | No |
| buildingIntegrity | Int | IntFieldUpdateOperationsInput | No |
| builds | BuildingUpdatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| buildingId | Int | No |
| eventId | String | No |
| qty | Int | No |
| harvests | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| buildingId | Int | No |
| eventId | String | No |
| qty | Int | No |
| harvests | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| harvests | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| harvests | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| buildingId | Int | No |
| eventId | String | No |
| qty | Int | No |
| harvests | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| harvests | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| harvests | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| originRealm | RealmCreateNestedOneWithoutRelicInput | No |
| realmHolder | RealmCreateNestedOneWithoutRelicsOwnedInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| heldByRealm | Int | No |
| Name | Type | Nullable |
|---|---|---|
| originRealm | RealmUpdateOneWithoutRelicNestedInput | No |
| realmHolder | RealmUpdateOneWithoutRelicsOwnedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| heldByRealm | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| heldByRealm | Int | No |
| Name | Type | Nullable |
|---|
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| heldByRealm | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| traitType | RealmTraitType | No |
| max | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| traitType | RealmTraitType | No |
| max | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| traitType | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| max | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| traitType | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| max | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| traitType | RealmTraitType | No |
| max | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| traitType | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| max | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| traitType | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| max | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| realm | RealmCreateNestedOneWithoutResourcesInput | No |
| labor | LaborCreateNestedOneWithoutResoureInput | No |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| realmId | Int | Null | Yes |
| labor | LaborUncheckedCreateNestedOneWithoutResoureInput | No |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| realm | RealmUpdateOneWithoutResourcesNestedInput | No |
| labor | LaborUpdateOneWithoutResoureNestedInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| labor | LaborUncheckedUpdateOneWithoutResoureNestedInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| realmId | Int | Null | Yes |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| vaultBalance | DateTime | Null | Yes |
| balance | DateTime | Null | Yes |
| lastUpdate | DateTime | Null | Yes |
| lastEventId | String | Null | Yes |
| qtyBuilt | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| resoure | ResourceCreateNestedOneWithoutLaborInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| resourceId | Int | No |
| vaultBalance | DateTime | Null | Yes |
| balance | DateTime | Null | Yes |
| lastUpdate | DateTime | Null | Yes |
| lastEventId | String | Null | Yes |
| qtyBuilt | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| vaultBalance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| balance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastUpdate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| qtyBuilt | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| resoure | ResourceUpdateOneRequiredWithoutLaborNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| vaultBalance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| balance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastUpdate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| qtyBuilt | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| resourceId | Int | No |
| vaultBalance | DateTime | Null | Yes |
| balance | DateTime | Null | Yes |
| lastUpdate | DateTime | Null | Yes |
| lastEventId | String | Null | Yes |
| qtyBuilt | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| vaultBalance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| balance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastUpdate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| qtyBuilt | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| vaultBalance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| balance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastUpdate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| qtyBuilt | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | No |
| tokenId | Int | No |
| amount | String | No |
| lastEventId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| tokenId | Int | No |
| amount | String | No |
| lastEventId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| address | String | StringFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| tokenId | Int | No |
| amount | String | No |
| lastEventId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| address | String | StringFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| realm | RealmCreateNestedOneWithoutTraitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| realm | RealmUpdateOneWithoutTraitsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | Null | Yes |
| Realm | RealmCreateNestedOneWithoutSquadInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | IntFieldUpdateOperationsInput | No |
| index | Int | IntFieldUpdateOperationsInput | No |
| type | Int | IntFieldUpdateOperationsInput | No |
| tier | Int | IntFieldUpdateOperationsInput | No |
| building | Int | IntFieldUpdateOperationsInput | No |
| agility | Int | IntFieldUpdateOperationsInput | No |
| attack | Int | IntFieldUpdateOperationsInput | No |
| armor | Int | IntFieldUpdateOperationsInput | No |
| vitality | Int | IntFieldUpdateOperationsInput | No |
| wisdom | Int | IntFieldUpdateOperationsInput | No |
| squadSlot | Int | IntFieldUpdateOperationsInput | No |
| timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Realm | RealmUpdateOneRequiredWithoutSquadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| troopId | Int | IntFieldUpdateOperationsInput | No |
| index | Int | IntFieldUpdateOperationsInput | No |
| type | Int | IntFieldUpdateOperationsInput | No |
| tier | Int | IntFieldUpdateOperationsInput | No |
| building | Int | IntFieldUpdateOperationsInput | No |
| agility | Int | IntFieldUpdateOperationsInput | No |
| attack | Int | IntFieldUpdateOperationsInput | No |
| armor | Int | IntFieldUpdateOperationsInput | No |
| vitality | Int | IntFieldUpdateOperationsInput | No |
| wisdom | Int | IntFieldUpdateOperationsInput | No |
| squadSlot | Int | IntFieldUpdateOperationsInput | No |
| timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | IntFieldUpdateOperationsInput | No |
| index | Int | IntFieldUpdateOperationsInput | No |
| type | Int | IntFieldUpdateOperationsInput | No |
| tier | Int | IntFieldUpdateOperationsInput | No |
| building | Int | IntFieldUpdateOperationsInput | No |
| agility | Int | IntFieldUpdateOperationsInput | No |
| attack | Int | IntFieldUpdateOperationsInput | No |
| armor | Int | IntFieldUpdateOperationsInput | No |
| vitality | Int | IntFieldUpdateOperationsInput | No |
| wisdom | Int | IntFieldUpdateOperationsInput | No |
| squadSlot | Int | IntFieldUpdateOperationsInput | No |
| timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| troopId | Int | IntFieldUpdateOperationsInput | No |
| index | Int | IntFieldUpdateOperationsInput | No |
| type | Int | IntFieldUpdateOperationsInput | No |
| tier | Int | IntFieldUpdateOperationsInput | No |
| building | Int | IntFieldUpdateOperationsInput | No |
| agility | Int | IntFieldUpdateOperationsInput | No |
| attack | Int | IntFieldUpdateOperationsInput | No |
| armor | Int | IntFieldUpdateOperationsInput | No |
| vitality | Int | IntFieldUpdateOperationsInput | No |
| wisdom | Int | IntFieldUpdateOperationsInput | No |
| squadSlot | Int | IntFieldUpdateOperationsInput | No |
| timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| gameId | Int | No |
| winner | Int | Null | Yes |
| attackedTokens | Int | Null | Yes |
| defendedTokens | Int | Null | Yes |
| damageInflicted | Int | Null | Yes |
| eventIndexed | String | Null | Yes |
| initialHealth | Int | Null | Yes |
| startBlock | Int | No |
| endBlock | Int | No |
| startedOn | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| winner | Int | Null | Yes |
| attackedTokens | Int | Null | Yes |
| defendedTokens | Int | Null | Yes |
| damageInflicted | Int | Null | Yes |
| eventIndexed | String | Null | Yes |
| initialHealth | Int | Null | Yes |
| startBlock | Int | No |
| endBlock | Int | No |
| startedOn | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| gameId | Int | IntFieldUpdateOperationsInput | No |
| winner | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| attackedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| defendedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| damageInflicted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| initialHealth | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| startBlock | Int | IntFieldUpdateOperationsInput | No |
| endBlock | Int | IntFieldUpdateOperationsInput | No |
| startedOn | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| gameId | Int | IntFieldUpdateOperationsInput | No |
| winner | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| attackedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| defendedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| damageInflicted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| initialHealth | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| startBlock | Int | IntFieldUpdateOperationsInput | No |
| endBlock | Int | IntFieldUpdateOperationsInput | No |
| startedOn | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| winner | Int | Null | Yes |
| attackedTokens | Int | Null | Yes |
| defendedTokens | Int | Null | Yes |
| damageInflicted | Int | Null | Yes |
| eventIndexed | String | Null | Yes |
| initialHealth | Int | Null | Yes |
| startBlock | Int | No |
| endBlock | Int | No |
| startedOn | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| gameId | Int | IntFieldUpdateOperationsInput | No |
| winner | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| attackedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| defendedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| damageInflicted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| initialHealth | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| startBlock | Int | IntFieldUpdateOperationsInput | No |
| endBlock | Int | IntFieldUpdateOperationsInput | No |
| startedOn | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| gameId | Int | IntFieldUpdateOperationsInput | No |
| winner | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| attackedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| defendedTokens | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| damageInflicted | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| initialHealth | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| startBlock | Int | IntFieldUpdateOperationsInput | No |
| endBlock | Int | IntFieldUpdateOperationsInput | No |
| startedOn | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| gameId | Int | No |
| account | String | No |
| amount | Int | No |
| amountBoosted | Int | No |
| tokenOffset | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| account | String | No |
| amount | Int | No |
| amountBoosted | Int | No |
| tokenOffset | Int | No |
| Name | Type | Nullable |
|---|---|---|
| gameId | Int | IntFieldUpdateOperationsInput | No |
| account | String | StringFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| amountBoosted | Int | IntFieldUpdateOperationsInput | No |
| tokenOffset | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| gameId | Int | IntFieldUpdateOperationsInput | No |
| account | String | StringFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| amountBoosted | Int | IntFieldUpdateOperationsInput | No |
| tokenOffset | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| account | String | No |
| amount | Int | No |
| amountBoosted | Int | No |
| tokenOffset | Int | No |
| Name | Type | Nullable |
|---|---|---|
| gameId | Int | IntFieldUpdateOperationsInput | No |
| account | String | StringFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| amountBoosted | Int | IntFieldUpdateOperationsInput | No |
| tokenOffset | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| gameId | Int | IntFieldUpdateOperationsInput | No |
| account | String | StringFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| amountBoosted | Int | IntFieldUpdateOperationsInput | No |
| tokenOffset | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| chainId | String | No |
| contract | String | No |
| name | String | No |
| parameters | EventCreateparametersInput | String | No |
| keys | EventCreatekeysInput | String | No |
| timestamp | DateTime | No |
| txHash | String | No |
| status | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| chainId | String | No |
| contract | String | No |
| name | String | No |
| parameters | EventCreateparametersInput | String | No |
| keys | EventCreatekeysInput | String | No |
| timestamp | DateTime | No |
| txHash | String | No |
| status | Int | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| chainId | String | StringFieldUpdateOperationsInput | No |
| contract | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| parameters | EventUpdateparametersInput | String | No |
| keys | EventUpdatekeysInput | String | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| txHash | String | StringFieldUpdateOperationsInput | No |
| status | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| chainId | String | StringFieldUpdateOperationsInput | No |
| contract | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| parameters | EventUpdateparametersInput | String | No |
| keys | EventUpdatekeysInput | String | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| txHash | String | StringFieldUpdateOperationsInput | No |
| status | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| chainId | String | No |
| contract | String | No |
| name | String | No |
| parameters | EventCreateparametersInput | String | No |
| keys | EventCreatekeysInput | String | No |
| timestamp | DateTime | No |
| txHash | String | No |
| status | Int | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| chainId | String | StringFieldUpdateOperationsInput | No |
| contract | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| parameters | EventUpdateparametersInput | String | No |
| keys | EventUpdatekeysInput | String | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| txHash | String | StringFieldUpdateOperationsInput | No |
| status | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| chainId | String | StringFieldUpdateOperationsInput | No |
| contract | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| parameters | EventUpdateparametersInput | String | No |
| keys | EventUpdatekeysInput | String | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| txHash | String | StringFieldUpdateOperationsInput | No |
| status | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | StringFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| owner | String | Null | Yes |
| ownerDisplayName | String | Null | Yes |
| kind | Int | No |
| eventIndexed | String | Null | Yes |
| revisions | LoreEntityRevisionCreateNestedManyWithoutEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| owner | String | Null | Yes |
| ownerDisplayName | String | Null | Yes |
| kind | Int | No |
| eventIndexed | String | Null | Yes |
| revisions | LoreEntityRevisionUncheckedCreateNestedManyWithoutEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| owner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| ownerDisplayName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| kind | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| revisions | LoreEntityRevisionUpdateManyWithoutEntityNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| owner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| ownerDisplayName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| kind | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| revisions | LoreEntityRevisionUncheckedUpdateManyWithoutEntityNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| owner | String | Null | Yes |
| ownerDisplayName | String | Null | Yes |
| kind | Int | No |
| eventIndexed | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| owner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| ownerDisplayName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| kind | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| owner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| ownerDisplayName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| kind | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| entity | LoreEntityCreateNestedOneWithoutRevisionsInput | No |
| eventIndexed | String | Null | Yes |
| pois | LorePoisOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput | No |
| props | LorePropsOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| entityId | Int | No |
| eventIndexed | String | Null | Yes |
| pois | LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput | No |
| props | LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| entity | LoreEntityUpdateOneRequiredWithoutRevisionsNestedInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pois | LorePoisOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput | No |
| props | LorePropsOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| entityId | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pois | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput | No |
| props | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| entityId | Int | No |
| eventIndexed | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| entityId | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| assetType | String | Null | Yes |
| entities | LorePoisOnEntityRevisionsCreateNestedManyWithoutPoiInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| assetType | String | Null | Yes |
| entities | LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutPoiInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| assetType | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entities | LorePoisOnEntityRevisionsUpdateManyWithoutPoiNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| assetType | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| entities | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutPoiNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| assetType | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| assetType | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| assetType | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| entities | LorePropsOnEntityRevisionsCreateNestedManyWithoutPropInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| entities | LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutPropInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| entities | LorePropsOnEntityRevisionsUpdateManyWithoutPropNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| entities | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutPropNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionCreateNestedOneWithoutPoisInput | No |
| poi | LorePOICreateNestedOneWithoutEntitiesInput | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| poiId | Int | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionUpdateOneRequiredWithoutPoisNestedInput | No |
| poi | LorePOIUpdateOneRequiredWithoutEntitiesNestedInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| poiId | Int | IntFieldUpdateOperationsInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| poiId | Int | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| poiId | Int | IntFieldUpdateOperationsInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionCreateNestedOneWithoutPropsInput | No |
| prop | LorePropCreateNestedOneWithoutEntitiesInput | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| propId | Int | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionUpdateOneRequiredWithoutPropsNestedInput | No |
| prop | LorePropUpdateOneRequiredWithoutEntitiesNestedInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| propId | Int | IntFieldUpdateOperationsInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| propId | Int | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| propId | Int | IntFieldUpdateOperationsInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| date | String | No |
| hour | Int | No |
| tokenId | Int | No |
| amount | String | No |
| buyAmount | String | No |
| sellAmount | String | No |
| currencyReserve | String | No |
| tokenReserve | String | No |
| lpAmount | String | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | No |
| hour | Int | No |
| tokenId | Int | No |
| amount | String | No |
| buyAmount | String | No |
| sellAmount | String | No |
| currencyReserve | String | No |
| tokenReserve | String | No |
| lpAmount | String | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | StringFieldUpdateOperationsInput | No |
| hour | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| buyAmount | String | StringFieldUpdateOperationsInput | No |
| sellAmount | String | StringFieldUpdateOperationsInput | No |
| currencyReserve | String | StringFieldUpdateOperationsInput | No |
| tokenReserve | String | StringFieldUpdateOperationsInput | No |
| lpAmount | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | StringFieldUpdateOperationsInput | No |
| hour | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| buyAmount | String | StringFieldUpdateOperationsInput | No |
| sellAmount | String | StringFieldUpdateOperationsInput | No |
| currencyReserve | String | StringFieldUpdateOperationsInput | No |
| tokenReserve | String | StringFieldUpdateOperationsInput | No |
| lpAmount | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | No |
| hour | Int | No |
| tokenId | Int | No |
| amount | String | No |
| buyAmount | String | No |
| sellAmount | String | No |
| currencyReserve | String | No |
| tokenReserve | String | No |
| lpAmount | String | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | StringFieldUpdateOperationsInput | No |
| hour | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| buyAmount | String | StringFieldUpdateOperationsInput | No |
| sellAmount | String | StringFieldUpdateOperationsInput | No |
| currencyReserve | String | StringFieldUpdateOperationsInput | No |
| tokenReserve | String | StringFieldUpdateOperationsInput | No |
| lpAmount | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | StringFieldUpdateOperationsInput | No |
| hour | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| buyAmount | String | StringFieldUpdateOperationsInput | No |
| sellAmount | String | StringFieldUpdateOperationsInput | No |
| currencyReserve | String | StringFieldUpdateOperationsInput | No |
| tokenReserve | String | StringFieldUpdateOperationsInput | No |
| lpAmount | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| eventType | String | No |
| realmId | Int | No |
| realmOwner | String | No |
| realmName | String | No |
| realmOrder | OrderType | Null | Yes |
| data | JsonNullValueInput | Json | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| realmId | Int | No |
| realmOwner | String | No |
| realmName | String | No |
| realmOrder | OrderType | Null | Yes |
| data | JsonNullValueInput | Json | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| realmOwner | String | StringFieldUpdateOperationsInput | No |
| realmName | String | StringFieldUpdateOperationsInput | No |
| realmOrder | OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null | Yes |
| data | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| realmOwner | String | StringFieldUpdateOperationsInput | No |
| realmName | String | StringFieldUpdateOperationsInput | No |
| realmOrder | OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null | Yes |
| data | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| realmId | Int | No |
| realmOwner | String | No |
| realmName | String | No |
| realmOrder | OrderType | Null | Yes |
| data | JsonNullValueInput | Json | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| realmOwner | String | StringFieldUpdateOperationsInput | No |
| realmName | String | StringFieldUpdateOperationsInput | No |
| realmOrder | OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null | Yes |
| data | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| realmId | Int | IntFieldUpdateOperationsInput | No |
| realmOwner | String | StringFieldUpdateOperationsInput | No |
| realmName | String | StringFieldUpdateOperationsInput | No |
| realmOrder | OrderType | NullableEnumOrderTypeFieldUpdateOperationsInput | Null | Yes |
| data | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| eventType | String | No |
| attackRealmId | Int | No |
| attackRealmOwner | String | No |
| attackSquad | JsonNullValueInput | Json | No |
| defendRealmId | Int | No |
| defendRealmOwner | String | No |
| defendSquad | JsonNullValueInput | Json | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| outcome | Int | No |
| attackType | Int | No |
| hitPoints | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| attackRealmId | Int | No |
| attackRealmOwner | String | No |
| attackSquad | JsonNullValueInput | Json | No |
| defendRealmId | Int | No |
| defendRealmOwner | String | No |
| defendSquad | JsonNullValueInput | Json | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| outcome | Int | No |
| attackType | Int | No |
| hitPoints | Int | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| attackRealmId | Int | IntFieldUpdateOperationsInput | No |
| attackRealmOwner | String | StringFieldUpdateOperationsInput | No |
| attackSquad | JsonNullValueInput | Json | No |
| defendRealmId | Int | IntFieldUpdateOperationsInput | No |
| defendRealmOwner | String | StringFieldUpdateOperationsInput | No |
| defendSquad | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| outcome | Int | IntFieldUpdateOperationsInput | No |
| attackType | Int | IntFieldUpdateOperationsInput | No |
| hitPoints | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| attackRealmId | Int | IntFieldUpdateOperationsInput | No |
| attackRealmOwner | String | StringFieldUpdateOperationsInput | No |
| attackSquad | JsonNullValueInput | Json | No |
| defendRealmId | Int | IntFieldUpdateOperationsInput | No |
| defendRealmOwner | String | StringFieldUpdateOperationsInput | No |
| defendSquad | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| outcome | Int | IntFieldUpdateOperationsInput | No |
| attackType | Int | IntFieldUpdateOperationsInput | No |
| hitPoints | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| attackRealmId | Int | No |
| attackRealmOwner | String | No |
| attackSquad | JsonNullValueInput | Json | No |
| defendRealmId | Int | No |
| defendRealmOwner | String | No |
| defendSquad | JsonNullValueInput | Json | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| outcome | Int | No |
| attackType | Int | No |
| hitPoints | Int | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| attackRealmId | Int | IntFieldUpdateOperationsInput | No |
| attackRealmOwner | String | StringFieldUpdateOperationsInput | No |
| attackSquad | JsonNullValueInput | Json | No |
| defendRealmId | Int | IntFieldUpdateOperationsInput | No |
| defendRealmOwner | String | StringFieldUpdateOperationsInput | No |
| defendSquad | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| outcome | Int | IntFieldUpdateOperationsInput | No |
| attackType | Int | IntFieldUpdateOperationsInput | No |
| hitPoints | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| eventType | String | StringFieldUpdateOperationsInput | No |
| attackRealmId | Int | IntFieldUpdateOperationsInput | No |
| attackRealmOwner | String | StringFieldUpdateOperationsInput | No |
| attackSquad | JsonNullValueInput | Json | No |
| defendRealmId | Int | IntFieldUpdateOperationsInput | No |
| defendRealmOwner | String | StringFieldUpdateOperationsInput | No |
| defendSquad | JsonNullValueInput | Json | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| outcome | Int | IntFieldUpdateOperationsInput | No |
| attackType | Int | IntFieldUpdateOperationsInput | No |
| hitPoints | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| fromAddress | String | No |
| toAddress | String | No |
| amount | String | No |
| amountValue | Decimal | No |
| transactionHash | String | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| fromAddress | String | No |
| toAddress | String | No |
| amount | String | No |
| amountValue | Decimal | No |
| transactionHash | String | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| fromAddress | String | StringFieldUpdateOperationsInput | No |
| toAddress | String | StringFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| amountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| fromAddress | String | StringFieldUpdateOperationsInput | No |
| toAddress | String | StringFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| amountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| fromAddress | String | No |
| toAddress | String | No |
| amount | String | No |
| amountValue | Decimal | No |
| transactionHash | String | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| fromAddress | String | StringFieldUpdateOperationsInput | No |
| toAddress | String | StringFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| amountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| blockNumber | Int | IntFieldUpdateOperationsInput | No |
| transactionNumber | Int | IntFieldUpdateOperationsInput | No |
| fromAddress | String | StringFieldUpdateOperationsInput | No |
| toAddress | String | StringFieldUpdateOperationsInput | No |
| amount | String | StringFieldUpdateOperationsInput | No |
| amountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| transactionHash | String | StringFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | Null | Yes |
| armyPacked | Int | No |
| lastAttacked | DateTime | Null | Yes |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| ownRealm | RealmCreateNestedOneWithoutOwnArmiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | Null | Yes |
| armyPacked | Int | No |
| lastAttacked | DateTime | Null | Yes |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | Null | Yes |
| armyPacked | Int | No |
| lastAttacked | DateTime | Null | Yes |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| contractId | Int | No |
| tokenId | Int | No |
| nestedId | Int | No |
| locationContractId | Int | No |
| locationTokenId | Int | No |
| locationNestedId | Int | No |
| destinationContractId | Int | No |
| destinationTokenId | Int | No |
| destinationNestedId | Int | No |
| destinationArrivalTime | DateTime | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| contractId | Int | No |
| tokenId | Int | No |
| nestedId | Int | No |
| locationContractId | Int | No |
| locationTokenId | Int | No |
| locationNestedId | Int | No |
| destinationContractId | Int | No |
| destinationTokenId | Int | No |
| destinationNestedId | Int | No |
| destinationArrivalTime | DateTime | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| contractId | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| nestedId | Int | IntFieldUpdateOperationsInput | No |
| locationContractId | Int | IntFieldUpdateOperationsInput | No |
| locationTokenId | Int | IntFieldUpdateOperationsInput | No |
| locationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationContractId | Int | IntFieldUpdateOperationsInput | No |
| destinationTokenId | Int | IntFieldUpdateOperationsInput | No |
| destinationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationArrivalTime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| contractId | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| nestedId | Int | IntFieldUpdateOperationsInput | No |
| locationContractId | Int | IntFieldUpdateOperationsInput | No |
| locationTokenId | Int | IntFieldUpdateOperationsInput | No |
| locationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationContractId | Int | IntFieldUpdateOperationsInput | No |
| destinationTokenId | Int | IntFieldUpdateOperationsInput | No |
| destinationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationArrivalTime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| contractId | Int | No |
| tokenId | Int | No |
| nestedId | Int | No |
| locationContractId | Int | No |
| locationTokenId | Int | No |
| locationNestedId | Int | No |
| destinationContractId | Int | No |
| destinationTokenId | Int | No |
| destinationNestedId | Int | No |
| destinationArrivalTime | DateTime | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| contractId | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| nestedId | Int | IntFieldUpdateOperationsInput | No |
| locationContractId | Int | IntFieldUpdateOperationsInput | No |
| locationTokenId | Int | IntFieldUpdateOperationsInput | No |
| locationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationContractId | Int | IntFieldUpdateOperationsInput | No |
| destinationTokenId | Int | IntFieldUpdateOperationsInput | No |
| destinationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationArrivalTime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| contractId | Int | IntFieldUpdateOperationsInput | No |
| tokenId | Int | IntFieldUpdateOperationsInput | No |
| nestedId | Int | IntFieldUpdateOperationsInput | No |
| locationContractId | Int | IntFieldUpdateOperationsInput | No |
| locationTokenId | Int | IntFieldUpdateOperationsInput | No |
| locationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationContractId | Int | IntFieldUpdateOperationsInput | No |
| destinationTokenId | Int | IntFieldUpdateOperationsInput | No |
| destinationNestedId | Int | IntFieldUpdateOperationsInput | No |
| destinationArrivalTime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| type | ExchangeEventType | No |
| resourceId | Int | No |
| address | String | No |
| currencyAmount | String | No |
| currencyAmountValue | Decimal | No |
| resourceAmount | String | No |
| resourceAmountValue | Decimal | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| type | ExchangeEventType | No |
| resourceId | Int | No |
| address | String | No |
| currencyAmount | String | No |
| currencyAmountValue | Decimal | No |
| resourceAmount | String | No |
| resourceAmountValue | Decimal | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| type | ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| currencyAmount | String | StringFieldUpdateOperationsInput | No |
| currencyAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| resourceAmount | String | StringFieldUpdateOperationsInput | No |
| resourceAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| type | ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| currencyAmount | String | StringFieldUpdateOperationsInput | No |
| currencyAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| resourceAmount | String | StringFieldUpdateOperationsInput | No |
| resourceAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| type | ExchangeEventType | No |
| resourceId | Int | No |
| address | String | No |
| currencyAmount | String | No |
| currencyAmountValue | Decimal | No |
| resourceAmount | String | No |
| resourceAmountValue | Decimal | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| type | ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| currencyAmount | String | StringFieldUpdateOperationsInput | No |
| currencyAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| resourceAmount | String | StringFieldUpdateOperationsInput | No |
| resourceAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | StringFieldUpdateOperationsInput | No |
| type | ExchangeEventType | EnumExchangeEventTypeFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| currencyAmount | String | StringFieldUpdateOperationsInput | No |
| currencyAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| resourceAmount | String | StringFieldUpdateOperationsInput | No |
| resourceAmountValue | Decimal | DecimalFieldUpdateOperationsInput | No |
| timestamp | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | RealmWhereInput | No |
| some | RealmWhereInput | No |
| none | RealmWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | WalletWhereInput | Null | Yes |
| isNot | WalletWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | No |
| notIn | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | RelicWhereInput | Null | Yes |
| isNot | RelicWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderType | Null | Yes |
| in | OrderType[] | Null | Yes |
| notIn | OrderType[] | Null | Yes |
| not | OrderType | NestedEnumOrderTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | BuildingWhereInput | No |
| some | BuildingWhereInput | No |
| none | BuildingWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ResourceWhereInput | No |
| some | ResourceWhereInput | No |
| none | ResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RelicWhereInput | No |
| some | RelicWhereInput | No |
| none | RelicWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RealmTraitWhereInput | No |
| some | RealmTraitWhereInput | No |
| none | RealmTraitWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TroopWhereInput | No |
| some | TroopWhereInput | No |
| none | TroopWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | ArmyWhereInput | No |
| some | ArmyWhereInput | No |
| none | ArmyWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| bridgedOwner | SortOrder | No |
| ownerL2 | SortOrder | No |
| settledOwner | SortOrder | No |
| wonder | SortOrder | No |
| rarityRank | SortOrder | No |
| rarityScore | SortOrder | No |
| imageUrl | SortOrder | No |
| orderType | SortOrder | No |
| lastAttacked | SortOrder | No |
| lastClaimTime | SortOrder | No |
| lastTick | SortOrder | No |
| lastVaultTime | SortOrder | No |
| longitude | SortOrder | No |
| latitude | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| rarityRank | SortOrder | No |
| rarityScore | SortOrder | No |
| longitude | SortOrder | No |
| latitude | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| bridgedOwner | SortOrder | No |
| ownerL2 | SortOrder | No |
| settledOwner | SortOrder | No |
| wonder | SortOrder | No |
| rarityRank | SortOrder | No |
| rarityScore | SortOrder | No |
| imageUrl | SortOrder | No |
| orderType | SortOrder | No |
| lastAttacked | SortOrder | No |
| lastClaimTime | SortOrder | No |
| lastTick | SortOrder | No |
| lastVaultTime | SortOrder | No |
| longitude | SortOrder | No |
| latitude | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| name | SortOrder | No |
| owner | SortOrder | No |
| bridgedOwner | SortOrder | No |
| ownerL2 | SortOrder | No |
| settledOwner | SortOrder | No |
| wonder | SortOrder | No |
| rarityRank | SortOrder | No |
| rarityScore | SortOrder | No |
| imageUrl | SortOrder | No |
| orderType | SortOrder | No |
| lastAttacked | SortOrder | No |
| lastClaimTime | SortOrder | No |
| lastTick | SortOrder | No |
| lastVaultTime | SortOrder | No |
| longitude | SortOrder | No |
| latitude | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| rarityRank | SortOrder | No |
| rarityScore | SortOrder | No |
| longitude | SortOrder | No |
| latitude | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | No |
| notIn | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderType | Null | Yes |
| in | OrderType[] | Null | Yes |
| notIn | OrderType[] | Null | Yes |
| not | OrderType | NestedEnumOrderTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumOrderTypeNullableFilter | No |
| _max | NestedEnumOrderTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | RealmWhereInput | Null | Yes |
| isNot | RealmWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| has | String | Null | Yes |
| hasEvery | String | No |
| hasSome | String | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| buildingId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| buildingId | SortOrder | No |
| realmId | SortOrder | No |
| eventId | SortOrder | No |
| buildingIntegrity | SortOrder | No |
| builds | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| buildingId | SortOrder | No |
| realmId | SortOrder | No |
| buildingIntegrity | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| buildingId | SortOrder | No |
| realmId | SortOrder | No |
| eventId | SortOrder | No |
| buildingIntegrity | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| buildingId | SortOrder | No |
| realmId | SortOrder | No |
| eventId | SortOrder | No |
| buildingIntegrity | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| buildingId | SortOrder | No |
| realmId | SortOrder | No |
| buildingIntegrity | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| buildingId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| buildingId | SortOrder | No |
| eventId | SortOrder | No |
| qty | SortOrder | No |
| harvests | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| buildingId | SortOrder | No |
| qty | SortOrder | No |
| harvests | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| buildingId | SortOrder | No |
| eventId | SortOrder | No |
| qty | SortOrder | No |
| harvests | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| buildingId | SortOrder | No |
| eventId | SortOrder | No |
| qty | SortOrder | No |
| harvests | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| buildingId | SortOrder | No |
| qty | SortOrder | No |
| harvests | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RealmTraitType | No |
| in | RealmTraitType[] | No |
| notIn | RealmTraitType[] | No |
| not | RealmTraitType | NestedEnumRealmTraitTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | SortOrder | No |
| traitType | SortOrder | No |
| max | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | SortOrder | No |
| max | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | SortOrder | No |
| traitType | SortOrder | No |
| max | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | SortOrder | No |
| traitType | SortOrder | No |
| max | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | SortOrder | No |
| max | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RealmTraitType | No |
| in | RealmTraitType[] | No |
| notIn | RealmTraitType[] | No |
| not | RealmTraitType | NestedEnumRealmTraitTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRealmTraitTypeFilter | No |
| _max | NestedEnumRealmTraitTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | LaborWhereInput | Null | Yes |
| isNot | LaborWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resourceId | SortOrder | No |
| realmId | SortOrder | No |
| level | SortOrder | No |
| upgrades | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resourceId | SortOrder | No |
| realmId | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resourceId | SortOrder | No |
| realmId | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resourceId | SortOrder | No |
| realmId | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| resourceId | SortOrder | No |
| realmId | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ResourceWhereInput | No |
| isNot | ResourceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| resourceId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| resourceId | SortOrder | No |
| vaultBalance | SortOrder | No |
| balance | SortOrder | No |
| lastUpdate | SortOrder | No |
| lastEventId | SortOrder | No |
| qtyBuilt | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| resourceId | SortOrder | No |
| qtyBuilt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| resourceId | SortOrder | No |
| vaultBalance | SortOrder | No |
| balance | SortOrder | No |
| lastUpdate | SortOrder | No |
| lastEventId | SortOrder | No |
| qtyBuilt | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| resourceId | SortOrder | No |
| vaultBalance | SortOrder | No |
| balance | SortOrder | No |
| lastUpdate | SortOrder | No |
| lastEventId | SortOrder | No |
| qtyBuilt | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| realmId | SortOrder | No |
| resourceId | SortOrder | No |
| qtyBuilt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | No |
| tokenId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| address | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| lastEventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| address | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| lastEventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| address | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| lastEventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| type | SortOrder | No |
| qty | SortOrder | No |
| realmId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| type | SortOrder | No |
| qty | SortOrder | No |
| realmId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| type | SortOrder | No |
| qty | SortOrder | No |
| realmId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| index | Int | No |
| squadSlot | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| troopId | SortOrder | No |
| index | SortOrder | No |
| type | SortOrder | No |
| tier | SortOrder | No |
| building | SortOrder | No |
| agility | SortOrder | No |
| attack | SortOrder | No |
| armor | SortOrder | No |
| vitality | SortOrder | No |
| wisdom | SortOrder | No |
| squadSlot | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| troopId | SortOrder | No |
| index | SortOrder | No |
| type | SortOrder | No |
| tier | SortOrder | No |
| building | SortOrder | No |
| agility | SortOrder | No |
| attack | SortOrder | No |
| armor | SortOrder | No |
| vitality | SortOrder | No |
| wisdom | SortOrder | No |
| squadSlot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| troopId | SortOrder | No |
| index | SortOrder | No |
| type | SortOrder | No |
| tier | SortOrder | No |
| building | SortOrder | No |
| agility | SortOrder | No |
| attack | SortOrder | No |
| armor | SortOrder | No |
| vitality | SortOrder | No |
| wisdom | SortOrder | No |
| squadSlot | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| troopId | SortOrder | No |
| index | SortOrder | No |
| type | SortOrder | No |
| tier | SortOrder | No |
| building | SortOrder | No |
| agility | SortOrder | No |
| attack | SortOrder | No |
| armor | SortOrder | No |
| vitality | SortOrder | No |
| wisdom | SortOrder | No |
| squadSlot | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| troopId | SortOrder | No |
| index | SortOrder | No |
| type | SortOrder | No |
| tier | SortOrder | No |
| building | SortOrder | No |
| agility | SortOrder | No |
| attack | SortOrder | No |
| armor | SortOrder | No |
| vitality | SortOrder | No |
| wisdom | SortOrder | No |
| squadSlot | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| winner | SortOrder | No |
| attackedTokens | SortOrder | No |
| defendedTokens | SortOrder | No |
| damageInflicted | SortOrder | No |
| eventIndexed | SortOrder | No |
| initialHealth | SortOrder | No |
| startBlock | SortOrder | No |
| endBlock | SortOrder | No |
| startedOn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| winner | SortOrder | No |
| attackedTokens | SortOrder | No |
| defendedTokens | SortOrder | No |
| damageInflicted | SortOrder | No |
| initialHealth | SortOrder | No |
| startBlock | SortOrder | No |
| endBlock | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| winner | SortOrder | No |
| attackedTokens | SortOrder | No |
| defendedTokens | SortOrder | No |
| damageInflicted | SortOrder | No |
| eventIndexed | SortOrder | No |
| initialHealth | SortOrder | No |
| startBlock | SortOrder | No |
| endBlock | SortOrder | No |
| startedOn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| winner | SortOrder | No |
| attackedTokens | SortOrder | No |
| defendedTokens | SortOrder | No |
| damageInflicted | SortOrder | No |
| eventIndexed | SortOrder | No |
| initialHealth | SortOrder | No |
| startBlock | SortOrder | No |
| endBlock | SortOrder | No |
| startedOn | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| winner | SortOrder | No |
| attackedTokens | SortOrder | No |
| defendedTokens | SortOrder | No |
| damageInflicted | SortOrder | No |
| initialHealth | SortOrder | No |
| startBlock | SortOrder | No |
| endBlock | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| account | SortOrder | No |
| amount | SortOrder | No |
| amountBoosted | SortOrder | No |
| tokenOffset | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| amount | SortOrder | No |
| amountBoosted | SortOrder | No |
| tokenOffset | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| account | SortOrder | No |
| amount | SortOrder | No |
| amountBoosted | SortOrder | No |
| tokenOffset | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| account | SortOrder | No |
| amount | SortOrder | No |
| amountBoosted | SortOrder | No |
| tokenOffset | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| gameId | SortOrder | No |
| amount | SortOrder | No |
| amountBoosted | SortOrder | No |
| tokenOffset | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| chainId | SortOrder | No |
| contract | SortOrder | No |
| name | SortOrder | No |
| parameters | SortOrder | No |
| keys | SortOrder | No |
| timestamp | SortOrder | No |
| txHash | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| chainId | SortOrder | No |
| contract | SortOrder | No |
| name | SortOrder | No |
| timestamp | SortOrder | No |
| txHash | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| chainId | SortOrder | No |
| contract | SortOrder | No |
| name | SortOrder | No |
| timestamp | SortOrder | No |
| txHash | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | SortOrder | No |
| eventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | SortOrder | No |
| eventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | SortOrder | No |
| eventId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | LoreEntityRevisionWhereInput | No |
| some | LoreEntityRevisionWhereInput | No |
| none | LoreEntityRevisionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| owner | SortOrder | No |
| ownerDisplayName | SortOrder | No |
| kind | SortOrder | No |
| eventIndexed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| owner | SortOrder | No |
| ownerDisplayName | SortOrder | No |
| kind | SortOrder | No |
| eventIndexed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| owner | SortOrder | No |
| ownerDisplayName | SortOrder | No |
| kind | SortOrder | No |
| eventIndexed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | LoreEntityWhereInput | No |
| isNot | LoreEntityWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | LorePoisOnEntityRevisionsWhereInput | No |
| some | LorePoisOnEntityRevisionsWhereInput | No |
| none | LorePoisOnEntityRevisionsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | LorePropsOnEntityRevisionsWhereInput | No |
| some | LorePropsOnEntityRevisionsWhereInput | No |
| none | LorePropsOnEntityRevisionsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| revisionNumber | SortOrder | No |
| arweaveId | SortOrder | No |
| title | SortOrder | No |
| markdown | SortOrder | No |
| excerpt | SortOrder | No |
| media_url | SortOrder | No |
| createdAt | SortOrder | No |
| entityId | SortOrder | No |
| eventIndexed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| revisionNumber | SortOrder | No |
| entityId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| revisionNumber | SortOrder | No |
| arweaveId | SortOrder | No |
| title | SortOrder | No |
| markdown | SortOrder | No |
| excerpt | SortOrder | No |
| media_url | SortOrder | No |
| createdAt | SortOrder | No |
| entityId | SortOrder | No |
| eventIndexed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| revisionNumber | SortOrder | No |
| arweaveId | SortOrder | No |
| title | SortOrder | No |
| markdown | SortOrder | No |
| excerpt | SortOrder | No |
| media_url | SortOrder | No |
| createdAt | SortOrder | No |
| entityId | SortOrder | No |
| eventIndexed | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| revisionNumber | SortOrder | No |
| entityId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| assetType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| assetType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| assetType | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | LoreEntityRevisionWhereInput | No |
| isNot | LoreEntityRevisionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | LorePOIWhereInput | No |
| isNot | LorePOIWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| poiId | SortOrder | No |
| assetId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| poiId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| poiId | SortOrder | No |
| assetId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| poiId | SortOrder | No |
| assetId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| poiId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | LorePropWhereInput | No |
| isNot | LorePropWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| propId | SortOrder | No |
| value | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| propId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| propId | SortOrder | No |
| value | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| propId | SortOrder | No |
| value | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| entityRevisionId | SortOrder | No |
| propId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | No |
| hour | Int | No |
| tokenId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| date | SortOrder | No |
| hour | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| buyAmount | SortOrder | No |
| sellAmount | SortOrder | No |
| currencyReserve | SortOrder | No |
| tokenReserve | SortOrder | No |
| lpAmount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| date | SortOrder | No |
| hour | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| buyAmount | SortOrder | No |
| sellAmount | SortOrder | No |
| currencyReserve | SortOrder | No |
| tokenReserve | SortOrder | No |
| lpAmount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| date | SortOrder | No |
| hour | SortOrder | No |
| tokenId | SortOrder | No |
| amount | SortOrder | No |
| buyAmount | SortOrder | No |
| sellAmount | SortOrder | No |
| currencyReserve | SortOrder | No |
| tokenReserve | SortOrder | No |
| lpAmount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| eventType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| realmId | SortOrder | No |
| realmOwner | SortOrder | No |
| realmName | SortOrder | No |
| realmOrder | SortOrder | No |
| data | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| realmId | SortOrder | No |
| realmOwner | SortOrder | No |
| realmName | SortOrder | No |
| realmOrder | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| realmId | SortOrder | No |
| realmOwner | SortOrder | No |
| realmName | SortOrder | No |
| realmOrder | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedJsonFilter | No |
| _max | NestedJsonFilter | No |
| Name | Type | Nullable |
|---|---|---|
| defendRealmId | Int | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| attackRealmId | SortOrder | No |
| attackRealmOwner | SortOrder | No |
| attackSquad | SortOrder | No |
| defendRealmId | SortOrder | No |
| defendRealmOwner | SortOrder | No |
| defendSquad | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| outcome | SortOrder | No |
| attackType | SortOrder | No |
| hitPoints | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| attackRealmId | SortOrder | No |
| defendRealmId | SortOrder | No |
| outcome | SortOrder | No |
| attackType | SortOrder | No |
| hitPoints | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| attackRealmId | SortOrder | No |
| attackRealmOwner | SortOrder | No |
| defendRealmId | SortOrder | No |
| defendRealmOwner | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| outcome | SortOrder | No |
| attackType | SortOrder | No |
| hitPoints | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| eventId | SortOrder | No |
| eventType | SortOrder | No |
| attackRealmId | SortOrder | No |
| attackRealmOwner | SortOrder | No |
| defendRealmId | SortOrder | No |
| defendRealmOwner | SortOrder | No |
| timestamp | SortOrder | No |
| transactionHash | SortOrder | No |
| outcome | SortOrder | No |
| attackType | SortOrder | No |
| hitPoints | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| attackRealmId | SortOrder | No |
| defendRealmId | SortOrder | No |
| outcome | SortOrder | No |
| attackType | SortOrder | No |
| hitPoints | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | No |
| notIn | Decimal[] | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| fromAddress | SortOrder | No |
| toAddress | SortOrder | No |
| amount | SortOrder | No |
| amountValue | SortOrder | No |
| transactionHash | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| amountValue | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| fromAddress | SortOrder | No |
| toAddress | SortOrder | No |
| amount | SortOrder | No |
| amountValue | SortOrder | No |
| transactionHash | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| eventId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| fromAddress | SortOrder | No |
| toAddress | SortOrder | No |
| amount | SortOrder | No |
| amountValue | SortOrder | No |
| transactionHash | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| blockNumber | SortOrder | No |
| transactionNumber | SortOrder | No |
| amountValue | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | No |
| notIn | Decimal[] | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| armyId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| armyId | SortOrder | No |
| destinationRealmId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| armyPacked | SortOrder | No |
| lastAttacked | SortOrder | No |
| xp | SortOrder | No |
| level | SortOrder | No |
| callSign | SortOrder | No |
| lightCavalryQty | SortOrder | No |
| lightCavalryHealth | SortOrder | No |
| heavyCavalryQty | SortOrder | No |
| heavyCavalryHealth | SortOrder | No |
| archerQty | SortOrder | No |
| archerHealth | SortOrder | No |
| longbowQty | SortOrder | No |
| longbowHealth | SortOrder | No |
| mageQty | SortOrder | No |
| mageHealth | SortOrder | No |
| arcanistQty | SortOrder | No |
| arcanistHealth | SortOrder | No |
| lightInfantryQty | SortOrder | No |
| lightInfantryHealth | SortOrder | No |
| heavyInfantryQty | SortOrder | No |
| heavyInfantryHealth | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| armyId | SortOrder | No |
| destinationRealmId | SortOrder | No |
| armyPacked | SortOrder | No |
| xp | SortOrder | No |
| level | SortOrder | No |
| callSign | SortOrder | No |
| lightCavalryQty | SortOrder | No |
| lightCavalryHealth | SortOrder | No |
| heavyCavalryQty | SortOrder | No |
| heavyCavalryHealth | SortOrder | No |
| archerQty | SortOrder | No |
| archerHealth | SortOrder | No |
| longbowQty | SortOrder | No |
| longbowHealth | SortOrder | No |
| mageQty | SortOrder | No |
| mageHealth | SortOrder | No |
| arcanistQty | SortOrder | No |
| arcanistHealth | SortOrder | No |
| lightInfantryQty | SortOrder | No |
| lightInfantryHealth | SortOrder | No |
| heavyInfantryQty | SortOrder | No |
| heavyInfantryHealth | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| armyId | SortOrder | No |
| destinationRealmId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| armyPacked | SortOrder | No |
| lastAttacked | SortOrder | No |
| xp | SortOrder | No |
| level | SortOrder | No |
| callSign | SortOrder | No |
| lightCavalryQty | SortOrder | No |
| lightCavalryHealth | SortOrder | No |
| heavyCavalryQty | SortOrder | No |
| heavyCavalryHealth | SortOrder | No |
| archerQty | SortOrder | No |
| archerHealth | SortOrder | No |
| longbowQty | SortOrder | No |
| longbowHealth | SortOrder | No |
| mageQty | SortOrder | No |
| mageHealth | SortOrder | No |
| arcanistQty | SortOrder | No |
| arcanistHealth | SortOrder | No |
| lightInfantryQty | SortOrder | No |
| lightInfantryHealth | SortOrder | No |
| heavyInfantryQty | SortOrder | No |
| heavyInfantryHealth | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| armyId | SortOrder | No |
| destinationRealmId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| armyPacked | SortOrder | No |
| lastAttacked | SortOrder | No |
| xp | SortOrder | No |
| level | SortOrder | No |
| callSign | SortOrder | No |
| lightCavalryQty | SortOrder | No |
| lightCavalryHealth | SortOrder | No |
| heavyCavalryQty | SortOrder | No |
| heavyCavalryHealth | SortOrder | No |
| archerQty | SortOrder | No |
| archerHealth | SortOrder | No |
| longbowQty | SortOrder | No |
| longbowHealth | SortOrder | No |
| mageQty | SortOrder | No |
| mageHealth | SortOrder | No |
| arcanistQty | SortOrder | No |
| arcanistHealth | SortOrder | No |
| lightInfantryQty | SortOrder | No |
| lightInfantryHealth | SortOrder | No |
| heavyInfantryQty | SortOrder | No |
| heavyInfantryHealth | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | SortOrder | No |
| armyId | SortOrder | No |
| destinationRealmId | SortOrder | No |
| armyPacked | SortOrder | No |
| xp | SortOrder | No |
| level | SortOrder | No |
| callSign | SortOrder | No |
| lightCavalryQty | SortOrder | No |
| lightCavalryHealth | SortOrder | No |
| heavyCavalryQty | SortOrder | No |
| heavyCavalryHealth | SortOrder | No |
| archerQty | SortOrder | No |
| archerHealth | SortOrder | No |
| longbowQty | SortOrder | No |
| longbowHealth | SortOrder | No |
| mageQty | SortOrder | No |
| mageHealth | SortOrder | No |
| arcanistQty | SortOrder | No |
| arcanistHealth | SortOrder | No |
| lightInfantryQty | SortOrder | No |
| lightInfantryHealth | SortOrder | No |
| heavyInfantryQty | SortOrder | No |
| heavyInfantryHealth | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| contractId | SortOrder | No |
| tokenId | SortOrder | No |
| nestedId | SortOrder | No |
| locationContractId | SortOrder | No |
| locationTokenId | SortOrder | No |
| locationNestedId | SortOrder | No |
| destinationContractId | SortOrder | No |
| destinationTokenId | SortOrder | No |
| destinationNestedId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| contractId | SortOrder | No |
| tokenId | SortOrder | No |
| nestedId | SortOrder | No |
| locationContractId | SortOrder | No |
| locationTokenId | SortOrder | No |
| locationNestedId | SortOrder | No |
| destinationContractId | SortOrder | No |
| destinationTokenId | SortOrder | No |
| destinationNestedId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| contractId | SortOrder | No |
| tokenId | SortOrder | No |
| nestedId | SortOrder | No |
| locationContractId | SortOrder | No |
| locationTokenId | SortOrder | No |
| locationNestedId | SortOrder | No |
| destinationContractId | SortOrder | No |
| destinationTokenId | SortOrder | No |
| destinationNestedId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| contractId | SortOrder | No |
| tokenId | SortOrder | No |
| nestedId | SortOrder | No |
| locationContractId | SortOrder | No |
| locationTokenId | SortOrder | No |
| locationNestedId | SortOrder | No |
| destinationContractId | SortOrder | No |
| destinationTokenId | SortOrder | No |
| destinationNestedId | SortOrder | No |
| destinationArrivalTime | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| contractId | SortOrder | No |
| tokenId | SortOrder | No |
| nestedId | SortOrder | No |
| locationContractId | SortOrder | No |
| locationTokenId | SortOrder | No |
| locationNestedId | SortOrder | No |
| destinationContractId | SortOrder | No |
| destinationTokenId | SortOrder | No |
| destinationNestedId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ExchangeEventType | No |
| in | ExchangeEventType[] | No |
| notIn | ExchangeEventType[] | No |
| not | ExchangeEventType | NestedEnumExchangeEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| type | SortOrder | No |
| resourceId | SortOrder | No |
| address | SortOrder | No |
| currencyAmount | SortOrder | No |
| currencyAmountValue | SortOrder | No |
| resourceAmount | SortOrder | No |
| resourceAmountValue | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| currencyAmountValue | SortOrder | No |
| resourceAmountValue | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| type | SortOrder | No |
| resourceId | SortOrder | No |
| address | SortOrder | No |
| currencyAmount | SortOrder | No |
| currencyAmountValue | SortOrder | No |
| resourceAmount | SortOrder | No |
| resourceAmountValue | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | SortOrder | No |
| type | SortOrder | No |
| resourceId | SortOrder | No |
| address | SortOrder | No |
| currencyAmount | SortOrder | No |
| currencyAmountValue | SortOrder | No |
| resourceAmount | SortOrder | No |
| resourceAmountValue | SortOrder | No |
| timestamp | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | SortOrder | No |
| currencyAmountValue | SortOrder | No |
| resourceAmountValue | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ExchangeEventType | No |
| in | ExchangeEventType[] | No |
| notIn | ExchangeEventType[] | No |
| not | ExchangeEventType | NestedEnumExchangeEventTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumExchangeEventTypeFilter | No |
| _max | NestedEnumExchangeEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletInput | RealmCreateWithoutWalletInput[] | RealmUncheckedCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletInput | RealmCreateOrConnectWithoutWalletInput[] | No |
| createMany | RealmCreateManyWalletInputEnvelope | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletL2Input | RealmCreateWithoutWalletL2Input[] | RealmUncheckedCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletL2Input | RealmCreateOrConnectWithoutWalletL2Input[] | No |
| createMany | RealmCreateManyWalletL2InputEnvelope | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletSettledInput | RealmCreateWithoutWalletSettledInput[] | RealmUncheckedCreateWithoutWalletSettledInput | RealmUncheckedCreateWithoutWalletSettledInput[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletSettledInput | RealmCreateOrConnectWithoutWalletSettledInput[] | No |
| createMany | RealmCreateManyWalletSettledInputEnvelope | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletInput | RealmCreateWithoutWalletInput[] | RealmUncheckedCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletInput | RealmCreateOrConnectWithoutWalletInput[] | No |
| createMany | RealmCreateManyWalletInputEnvelope | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletL2Input | RealmCreateWithoutWalletL2Input[] | RealmUncheckedCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletL2Input | RealmCreateOrConnectWithoutWalletL2Input[] | No |
| createMany | RealmCreateManyWalletL2InputEnvelope | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletSettledInput | RealmCreateWithoutWalletSettledInput[] | RealmUncheckedCreateWithoutWalletSettledInput | RealmUncheckedCreateWithoutWalletSettledInput[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletSettledInput | RealmCreateOrConnectWithoutWalletSettledInput[] | No |
| createMany | RealmCreateManyWalletSettledInputEnvelope | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletInput | RealmCreateWithoutWalletInput[] | RealmUncheckedCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletInput | RealmCreateOrConnectWithoutWalletInput[] | No |
| upsert | RealmUpsertWithWhereUniqueWithoutWalletInput | RealmUpsertWithWhereUniqueWithoutWalletInput[] | No |
| createMany | RealmCreateManyWalletInputEnvelope | No |
| set | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| disconnect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| delete | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| update | RealmUpdateWithWhereUniqueWithoutWalletInput | RealmUpdateWithWhereUniqueWithoutWalletInput[] | No |
| updateMany | RealmUpdateManyWithWhereWithoutWalletInput | RealmUpdateManyWithWhereWithoutWalletInput[] | No |
| deleteMany | RealmScalarWhereInput | RealmScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletL2Input | RealmCreateWithoutWalletL2Input[] | RealmUncheckedCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletL2Input | RealmCreateOrConnectWithoutWalletL2Input[] | No |
| upsert | RealmUpsertWithWhereUniqueWithoutWalletL2Input | RealmUpsertWithWhereUniqueWithoutWalletL2Input[] | No |
| createMany | RealmCreateManyWalletL2InputEnvelope | No |
| set | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| disconnect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| delete | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| update | RealmUpdateWithWhereUniqueWithoutWalletL2Input | RealmUpdateWithWhereUniqueWithoutWalletL2Input[] | No |
| updateMany | RealmUpdateManyWithWhereWithoutWalletL2Input | RealmUpdateManyWithWhereWithoutWalletL2Input[] | No |
| deleteMany | RealmScalarWhereInput | RealmScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletInput | RealmCreateWithoutWalletInput[] | RealmUncheckedCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletInput | RealmCreateOrConnectWithoutWalletInput[] | No |
| upsert | RealmUpsertWithWhereUniqueWithoutWalletInput | RealmUpsertWithWhereUniqueWithoutWalletInput[] | No |
| createMany | RealmCreateManyWalletInputEnvelope | No |
| set | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| disconnect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| delete | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| update | RealmUpdateWithWhereUniqueWithoutWalletInput | RealmUpdateWithWhereUniqueWithoutWalletInput[] | No |
| updateMany | RealmUpdateManyWithWhereWithoutWalletInput | RealmUpdateManyWithWhereWithoutWalletInput[] | No |
| deleteMany | RealmScalarWhereInput | RealmScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutWalletL2Input | RealmCreateWithoutWalletL2Input[] | RealmUncheckedCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input[] | No |
| connectOrCreate | RealmCreateOrConnectWithoutWalletL2Input | RealmCreateOrConnectWithoutWalletL2Input[] | No |
| upsert | RealmUpsertWithWhereUniqueWithoutWalletL2Input | RealmUpsertWithWhereUniqueWithoutWalletL2Input[] | No |
| createMany | RealmCreateManyWalletL2InputEnvelope | No |
| set | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| disconnect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| delete | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| connect | RealmWhereUniqueInput | RealmWhereUniqueInput[] | No |
| update | RealmUpdateWithWhereUniqueWithoutWalletL2Input | RealmUpdateWithWhereUniqueWithoutWalletL2Input[] | No |
| updateMany | RealmUpdateManyWithWhereWithoutWalletL2Input | RealmUpdateManyWithWhereWithoutWalletL2Input[] | No |
| deleteMany | RealmScalarWhereInput | RealmScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | WalletCreateWithoutRealmsL1Input | WalletUncheckedCreateWithoutRealmsL1Input | No |
| connectOrCreate | WalletCreateOrConnectWithoutRealmsL1Input | No |
| connect | WalletWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | WalletCreateWithoutRealmsL2Input | WalletUncheckedCreateWithoutRealmsL2Input | No |
| connectOrCreate | WalletCreateOrConnectWithoutRealmsL2Input | No |
| connect | WalletWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | WalletCreateWithoutRealmsSettledInput | WalletUncheckedCreateWithoutRealmsSettledInput | No |
| connectOrCreate | WalletCreateOrConnectWithoutRealmsSettledInput | No |
| connect | WalletWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput | No |
| connectOrCreate | RelicCreateOrConnectWithoutOriginRealmInput | No |
| connect | RelicWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BuildingCreateWithoutRealmInput | BuildingCreateWithoutRealmInput[] | BuildingUncheckedCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | BuildingCreateOrConnectWithoutRealmInput | BuildingCreateOrConnectWithoutRealmInput[] | No |
| createMany | BuildingCreateManyRealmInputEnvelope | No |
| connect | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutRealmInput | ResourceCreateWithoutRealmInput[] | ResourceUncheckedCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | ResourceCreateOrConnectWithoutRealmInput | ResourceCreateOrConnectWithoutRealmInput[] | No |
| createMany | ResourceCreateManyRealmInputEnvelope | No |
| connect | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RelicCreateWithoutRealmHolderInput | RelicCreateWithoutRealmHolderInput[] | RelicUncheckedCreateWithoutRealmHolderInput | RelicUncheckedCreateWithoutRealmHolderInput[] | No |
| connectOrCreate | RelicCreateOrConnectWithoutRealmHolderInput | RelicCreateOrConnectWithoutRealmHolderInput[] | No |
| createMany | RelicCreateManyRealmHolderInputEnvelope | No |
| connect | RelicWhereUniqueInput | RelicWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmTraitCreateWithoutRealmInput | RealmTraitCreateWithoutRealmInput[] | RealmTraitUncheckedCreateWithoutRealmInput | RealmTraitUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | RealmTraitCreateOrConnectWithoutRealmInput | RealmTraitCreateOrConnectWithoutRealmInput[] | No |
| createMany | RealmTraitCreateManyRealmInputEnvelope | No |
| connect | RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TroopCreateWithoutRealmInput | TroopCreateWithoutRealmInput[] | TroopUncheckedCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | TroopCreateOrConnectWithoutRealmInput | TroopCreateOrConnectWithoutRealmInput[] | No |
| createMany | TroopCreateManyRealmInputEnvelope | No |
| connect | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArmyCreateWithoutOwnRealmInput | ArmyCreateWithoutOwnRealmInput[] | ArmyUncheckedCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput[] | No |
| connectOrCreate | ArmyCreateOrConnectWithoutOwnRealmInput | ArmyCreateOrConnectWithoutOwnRealmInput[] | No |
| createMany | ArmyCreateManyOwnRealmInputEnvelope | No |
| connect | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput | No |
| connectOrCreate | RelicCreateOrConnectWithoutOriginRealmInput | No |
| connect | RelicWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BuildingCreateWithoutRealmInput | BuildingCreateWithoutRealmInput[] | BuildingUncheckedCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | BuildingCreateOrConnectWithoutRealmInput | BuildingCreateOrConnectWithoutRealmInput[] | No |
| createMany | BuildingCreateManyRealmInputEnvelope | No |
| connect | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutRealmInput | ResourceCreateWithoutRealmInput[] | ResourceUncheckedCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | ResourceCreateOrConnectWithoutRealmInput | ResourceCreateOrConnectWithoutRealmInput[] | No |
| createMany | ResourceCreateManyRealmInputEnvelope | No |
| connect | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RelicCreateWithoutRealmHolderInput | RelicCreateWithoutRealmHolderInput[] | RelicUncheckedCreateWithoutRealmHolderInput | RelicUncheckedCreateWithoutRealmHolderInput[] | No |
| connectOrCreate | RelicCreateOrConnectWithoutRealmHolderInput | RelicCreateOrConnectWithoutRealmHolderInput[] | No |
| createMany | RelicCreateManyRealmHolderInputEnvelope | No |
| connect | RelicWhereUniqueInput | RelicWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmTraitCreateWithoutRealmInput | RealmTraitCreateWithoutRealmInput[] | RealmTraitUncheckedCreateWithoutRealmInput | RealmTraitUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | RealmTraitCreateOrConnectWithoutRealmInput | RealmTraitCreateOrConnectWithoutRealmInput[] | No |
| createMany | RealmTraitCreateManyRealmInputEnvelope | No |
| connect | RealmTraitWhereUniqueInput | RealmTraitWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TroopCreateWithoutRealmInput | TroopCreateWithoutRealmInput[] | TroopUncheckedCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | TroopCreateOrConnectWithoutRealmInput | TroopCreateOrConnectWithoutRealmInput[] | No |
| createMany | TroopCreateManyRealmInputEnvelope | No |
| connect | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArmyCreateWithoutOwnRealmInput | ArmyCreateWithoutOwnRealmInput[] | ArmyUncheckedCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput[] | No |
| connectOrCreate | ArmyCreateOrConnectWithoutOwnRealmInput | ArmyCreateOrConnectWithoutOwnRealmInput[] | No |
| createMany | ArmyCreateManyOwnRealmInputEnvelope | No |
| connect | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | WalletCreateWithoutRealmsL1Input | WalletUncheckedCreateWithoutRealmsL1Input | No |
| connectOrCreate | WalletCreateOrConnectWithoutRealmsL1Input | No |
| upsert | WalletUpsertWithoutRealmsL1Input | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | WalletWhereUniqueInput | No |
| update | WalletUpdateWithoutRealmsL1Input | WalletUncheckedUpdateWithoutRealmsL1Input | No |
| Name | Type | Nullable |
|---|---|---|
| create | WalletCreateWithoutRealmsL2Input | WalletUncheckedCreateWithoutRealmsL2Input | No |
| connectOrCreate | WalletCreateOrConnectWithoutRealmsL2Input | No |
| upsert | WalletUpsertWithoutRealmsL2Input | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | WalletWhereUniqueInput | No |
| update | WalletUpdateWithoutRealmsL2Input | WalletUncheckedUpdateWithoutRealmsL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| create | WalletCreateWithoutRealmsSettledInput | WalletUncheckedCreateWithoutRealmsSettledInput | No |
| connectOrCreate | WalletCreateOrConnectWithoutRealmsSettledInput | No |
| upsert | WalletUpsertWithoutRealmsSettledInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | WalletWhereUniqueInput | No |
| update | WalletUpdateWithoutRealmsSettledInput | WalletUncheckedUpdateWithoutRealmsSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | No |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| create | RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput | No |
| connectOrCreate | RelicCreateOrConnectWithoutOriginRealmInput | No |
| upsert | RelicUpsertWithoutOriginRealmInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RelicWhereUniqueInput | No |
| update | RelicUpdateWithoutOriginRealmInput | RelicUncheckedUpdateWithoutOriginRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | OrderType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | BuildingCreateWithoutRealmInput | BuildingCreateWithoutRealmInput[] | BuildingUncheckedCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | BuildingCreateOrConnectWithoutRealmInput | BuildingCreateOrConnectWithoutRealmInput[] | No |
| upsert | BuildingUpsertWithWhereUniqueWithoutRealmInput | BuildingUpsertWithWhereUniqueWithoutRealmInput[] | No |
| createMany | BuildingCreateManyRealmInputEnvelope | No |
| set | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| disconnect | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| delete | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| connect | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| update | BuildingUpdateWithWhereUniqueWithoutRealmInput | BuildingUpdateWithWhereUniqueWithoutRealmInput[] | No |
| updateMany | BuildingUpdateManyWithWhereWithoutRealmInput | BuildingUpdateManyWithWhereWithoutRealmInput[] | No |
| deleteMany | BuildingScalarWhereInput | BuildingScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutRealmInput | ResourceCreateWithoutRealmInput[] | ResourceUncheckedCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | ResourceCreateOrConnectWithoutRealmInput | ResourceCreateOrConnectWithoutRealmInput[] | No |
| upsert | ResourceUpsertWithWhereUniqueWithoutRealmInput | ResourceUpsertWithWhereUniqueWithoutRealmInput[] | No |
| createMany | ResourceCreateManyRealmInputEnvelope | No |
| set | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| disconnect | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| delete | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| connect | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| update | ResourceUpdateWithWhereUniqueWithoutRealmInput | ResourceUpdateWithWhereUniqueWithoutRealmInput[] | No |
| updateMany | ResourceUpdateManyWithWhereWithoutRealmInput | ResourceUpdateManyWithWhereWithoutRealmInput[] | No |
| deleteMany | ResourceScalarWhereInput | ResourceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TroopCreateWithoutRealmInput | TroopCreateWithoutRealmInput[] | TroopUncheckedCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | TroopCreateOrConnectWithoutRealmInput | TroopCreateOrConnectWithoutRealmInput[] | No |
| upsert | TroopUpsertWithWhereUniqueWithoutRealmInput | TroopUpsertWithWhereUniqueWithoutRealmInput[] | No |
| createMany | TroopCreateManyRealmInputEnvelope | No |
| set | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| disconnect | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| delete | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| connect | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| update | TroopUpdateWithWhereUniqueWithoutRealmInput | TroopUpdateWithWhereUniqueWithoutRealmInput[] | No |
| updateMany | TroopUpdateManyWithWhereWithoutRealmInput | TroopUpdateManyWithWhereWithoutRealmInput[] | No |
| deleteMany | TroopScalarWhereInput | TroopScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | ArmyCreateWithoutOwnRealmInput | ArmyCreateWithoutOwnRealmInput[] | ArmyUncheckedCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput[] | No |
| connectOrCreate | ArmyCreateOrConnectWithoutOwnRealmInput | ArmyCreateOrConnectWithoutOwnRealmInput[] | No |
| upsert | ArmyUpsertWithWhereUniqueWithoutOwnRealmInput | ArmyUpsertWithWhereUniqueWithoutOwnRealmInput[] | No |
| createMany | ArmyCreateManyOwnRealmInputEnvelope | No |
| set | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| disconnect | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| delete | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| connect | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| update | ArmyUpdateWithWhereUniqueWithoutOwnRealmInput | ArmyUpdateWithWhereUniqueWithoutOwnRealmInput[] | No |
| updateMany | ArmyUpdateManyWithWhereWithoutOwnRealmInput | ArmyUpdateManyWithWhereWithoutOwnRealmInput[] | No |
| deleteMany | ArmyScalarWhereInput | ArmyScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput | No |
| connectOrCreate | RelicCreateOrConnectWithoutOriginRealmInput | No |
| upsert | RelicUpsertWithoutOriginRealmInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RelicWhereUniqueInput | No |
| update | RelicUpdateWithoutOriginRealmInput | RelicUncheckedUpdateWithoutOriginRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BuildingCreateWithoutRealmInput | BuildingCreateWithoutRealmInput[] | BuildingUncheckedCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | BuildingCreateOrConnectWithoutRealmInput | BuildingCreateOrConnectWithoutRealmInput[] | No |
| upsert | BuildingUpsertWithWhereUniqueWithoutRealmInput | BuildingUpsertWithWhereUniqueWithoutRealmInput[] | No |
| createMany | BuildingCreateManyRealmInputEnvelope | No |
| set | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| disconnect | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| delete | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| connect | BuildingWhereUniqueInput | BuildingWhereUniqueInput[] | No |
| update | BuildingUpdateWithWhereUniqueWithoutRealmInput | BuildingUpdateWithWhereUniqueWithoutRealmInput[] | No |
| updateMany | BuildingUpdateManyWithWhereWithoutRealmInput | BuildingUpdateManyWithWhereWithoutRealmInput[] | No |
| deleteMany | BuildingScalarWhereInput | BuildingScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutRealmInput | ResourceCreateWithoutRealmInput[] | ResourceUncheckedCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | ResourceCreateOrConnectWithoutRealmInput | ResourceCreateOrConnectWithoutRealmInput[] | No |
| upsert | ResourceUpsertWithWhereUniqueWithoutRealmInput | ResourceUpsertWithWhereUniqueWithoutRealmInput[] | No |
| createMany | ResourceCreateManyRealmInputEnvelope | No |
| set | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| disconnect | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| delete | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| connect | ResourceWhereUniqueInput | ResourceWhereUniqueInput[] | No |
| update | ResourceUpdateWithWhereUniqueWithoutRealmInput | ResourceUpdateWithWhereUniqueWithoutRealmInput[] | No |
| updateMany | ResourceUpdateManyWithWhereWithoutRealmInput | ResourceUpdateManyWithWhereWithoutRealmInput[] | No |
| deleteMany | ResourceScalarWhereInput | ResourceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TroopCreateWithoutRealmInput | TroopCreateWithoutRealmInput[] | TroopUncheckedCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput[] | No |
| connectOrCreate | TroopCreateOrConnectWithoutRealmInput | TroopCreateOrConnectWithoutRealmInput[] | No |
| upsert | TroopUpsertWithWhereUniqueWithoutRealmInput | TroopUpsertWithWhereUniqueWithoutRealmInput[] | No |
| createMany | TroopCreateManyRealmInputEnvelope | No |
| set | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| disconnect | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| delete | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| connect | TroopWhereUniqueInput | TroopWhereUniqueInput[] | No |
| update | TroopUpdateWithWhereUniqueWithoutRealmInput | TroopUpdateWithWhereUniqueWithoutRealmInput[] | No |
| updateMany | TroopUpdateManyWithWhereWithoutRealmInput | TroopUpdateManyWithWhereWithoutRealmInput[] | No |
| deleteMany | TroopScalarWhereInput | TroopScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArmyCreateWithoutOwnRealmInput | ArmyCreateWithoutOwnRealmInput[] | ArmyUncheckedCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput[] | No |
| connectOrCreate | ArmyCreateOrConnectWithoutOwnRealmInput | ArmyCreateOrConnectWithoutOwnRealmInput[] | No |
| upsert | ArmyUpsertWithWhereUniqueWithoutOwnRealmInput | ArmyUpsertWithWhereUniqueWithoutOwnRealmInput[] | No |
| createMany | ArmyCreateManyOwnRealmInputEnvelope | No |
| set | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| disconnect | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| delete | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| connect | ArmyWhereUniqueInput | ArmyWhereUniqueInput[] | No |
| update | ArmyUpdateWithWhereUniqueWithoutOwnRealmInput | ArmyUpdateWithWhereUniqueWithoutOwnRealmInput[] | No |
| updateMany | ArmyUpdateManyWithWhereWithoutOwnRealmInput | ArmyUpdateManyWithWhereWithoutOwnRealmInput[] | No |
| deleteMany | ArmyScalarWhereInput | ArmyScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutBuildingsInput | RealmUncheckedCreateWithoutBuildingsInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutBuildingsInput | No |
| connect | RealmWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutBuildingsInput | RealmUncheckedCreateWithoutBuildingsInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutBuildingsInput | No |
| upsert | RealmUpsertWithoutBuildingsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutBuildingsInput | RealmUncheckedUpdateWithoutBuildingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutRelicInput | RealmUncheckedCreateWithoutRelicInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutRelicInput | No |
| connect | RealmWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutRelicsOwnedInput | RealmUncheckedCreateWithoutRelicsOwnedInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutRelicsOwnedInput | No |
| connect | RealmWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutRelicInput | RealmUncheckedCreateWithoutRelicInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutRelicInput | No |
| upsert | RealmUpsertWithoutRelicInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutRelicInput | RealmUncheckedUpdateWithoutRelicInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutRelicsOwnedInput | RealmUncheckedCreateWithoutRelicsOwnedInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutRelicsOwnedInput | No |
| upsert | RealmUpsertWithoutRelicsOwnedInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutRelicsOwnedInput | RealmUncheckedUpdateWithoutRelicsOwnedInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | RealmTraitType | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutResourcesInput | RealmUncheckedCreateWithoutResourcesInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutResourcesInput | No |
| connect | RealmWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput | No |
| connectOrCreate | LaborCreateOrConnectWithoutResoureInput | No |
| connect | LaborWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput | No |
| connectOrCreate | LaborCreateOrConnectWithoutResoureInput | No |
| connect | LaborWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutResourcesInput | RealmUncheckedCreateWithoutResourcesInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutResourcesInput | No |
| upsert | RealmUpsertWithoutResourcesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutResourcesInput | RealmUncheckedUpdateWithoutResourcesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput | No |
| connectOrCreate | LaborCreateOrConnectWithoutResoureInput | No |
| upsert | LaborUpsertWithoutResoureInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | LaborWhereUniqueInput | No |
| update | LaborUpdateWithoutResoureInput | LaborUncheckedUpdateWithoutResoureInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput | No |
| connectOrCreate | LaborCreateOrConnectWithoutResoureInput | No |
| upsert | LaborUpsertWithoutResoureInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | LaborWhereUniqueInput | No |
| update | LaborUpdateWithoutResoureInput | LaborUncheckedUpdateWithoutResoureInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutLaborInput | ResourceUncheckedCreateWithoutLaborInput | No |
| connectOrCreate | ResourceCreateOrConnectWithoutLaborInput | No |
| connect | ResourceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ResourceCreateWithoutLaborInput | ResourceUncheckedCreateWithoutLaborInput | No |
| connectOrCreate | ResourceCreateOrConnectWithoutLaborInput | No |
| upsert | ResourceUpsertWithoutLaborInput | No |
| connect | ResourceWhereUniqueInput | No |
| update | ResourceUpdateWithoutLaborInput | ResourceUncheckedUpdateWithoutLaborInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutTraitsInput | RealmUncheckedCreateWithoutTraitsInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutTraitsInput | No |
| connect | RealmWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutTraitsInput | RealmUncheckedCreateWithoutTraitsInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutTraitsInput | No |
| upsert | RealmUpsertWithoutTraitsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutTraitsInput | RealmUncheckedUpdateWithoutTraitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutSquadInput | RealmUncheckedCreateWithoutSquadInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutSquadInput | No |
| connect | RealmWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutSquadInput | RealmUncheckedCreateWithoutSquadInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutSquadInput | No |
| upsert | RealmUpsertWithoutSquadInput | No |
| connect | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutSquadInput | RealmUncheckedUpdateWithoutSquadInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoreEntityCreateWithoutRevisionsInput | LoreEntityUncheckedCreateWithoutRevisionsInput | No |
| connectOrCreate | LoreEntityCreateOrConnectWithoutRevisionsInput | No |
| connect | LoreEntityWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoreEntityCreateWithoutRevisionsInput | LoreEntityUncheckedCreateWithoutRevisionsInput | No |
| connectOrCreate | LoreEntityCreateOrConnectWithoutRevisionsInput | No |
| upsert | LoreEntityUpsertWithoutRevisionsInput | No |
| connect | LoreEntityWhereUniqueInput | No |
| update | LoreEntityUpdateWithoutRevisionsInput | LoreEntityUncheckedUpdateWithoutRevisionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoreEntityRevisionCreateWithoutPoisInput | LoreEntityRevisionUncheckedCreateWithoutPoisInput | No |
| connectOrCreate | LoreEntityRevisionCreateOrConnectWithoutPoisInput | No |
| connect | LoreEntityRevisionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LorePOICreateWithoutEntitiesInput | LorePOIUncheckedCreateWithoutEntitiesInput | No |
| connectOrCreate | LorePOICreateOrConnectWithoutEntitiesInput | No |
| connect | LorePOIWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoreEntityRevisionCreateWithoutPoisInput | LoreEntityRevisionUncheckedCreateWithoutPoisInput | No |
| connectOrCreate | LoreEntityRevisionCreateOrConnectWithoutPoisInput | No |
| upsert | LoreEntityRevisionUpsertWithoutPoisInput | No |
| connect | LoreEntityRevisionWhereUniqueInput | No |
| update | LoreEntityRevisionUpdateWithoutPoisInput | LoreEntityRevisionUncheckedUpdateWithoutPoisInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LorePOICreateWithoutEntitiesInput | LorePOIUncheckedCreateWithoutEntitiesInput | No |
| connectOrCreate | LorePOICreateOrConnectWithoutEntitiesInput | No |
| upsert | LorePOIUpsertWithoutEntitiesInput | No |
| connect | LorePOIWhereUniqueInput | No |
| update | LorePOIUpdateWithoutEntitiesInput | LorePOIUncheckedUpdateWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoreEntityRevisionCreateWithoutPropsInput | LoreEntityRevisionUncheckedCreateWithoutPropsInput | No |
| connectOrCreate | LoreEntityRevisionCreateOrConnectWithoutPropsInput | No |
| connect | LoreEntityRevisionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LorePropCreateWithoutEntitiesInput | LorePropUncheckedCreateWithoutEntitiesInput | No |
| connectOrCreate | LorePropCreateOrConnectWithoutEntitiesInput | No |
| connect | LorePropWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoreEntityRevisionCreateWithoutPropsInput | LoreEntityRevisionUncheckedCreateWithoutPropsInput | No |
| connectOrCreate | LoreEntityRevisionCreateOrConnectWithoutPropsInput | No |
| upsert | LoreEntityRevisionUpsertWithoutPropsInput | No |
| connect | LoreEntityRevisionWhereUniqueInput | No |
| update | LoreEntityRevisionUpdateWithoutPropsInput | LoreEntityRevisionUncheckedUpdateWithoutPropsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LorePropCreateWithoutEntitiesInput | LorePropUncheckedCreateWithoutEntitiesInput | No |
| connectOrCreate | LorePropCreateOrConnectWithoutEntitiesInput | No |
| upsert | LorePropUpsertWithoutEntitiesInput | No |
| connect | LorePropWhereUniqueInput | No |
| update | LorePropUpdateWithoutEntitiesInput | LorePropUncheckedUpdateWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Decimal | No |
| increment | Decimal | No |
| decrement | Decimal | No |
| multiply | Decimal | No |
| divide | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutOwnArmiesInput | RealmUncheckedCreateWithoutOwnArmiesInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutOwnArmiesInput | No |
| connect | RealmWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RealmCreateWithoutOwnArmiesInput | RealmUncheckedCreateWithoutOwnArmiesInput | No |
| connectOrCreate | RealmCreateOrConnectWithoutOwnArmiesInput | No |
| upsert | RealmUpsertWithoutOwnArmiesInput | No |
| connect | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutOwnArmiesInput | RealmUncheckedUpdateWithoutOwnArmiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | ExchangeEventType | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | No |
| notIn | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderType | Null | Yes |
| in | OrderType[] | Null | Yes |
| notIn | OrderType[] | Null | Yes |
| not | OrderType | NestedEnumOrderTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | No |
| notIn | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderType | Null | Yes |
| in | OrderType[] | Null | Yes |
| notIn | OrderType[] | Null | Yes |
| not | OrderType | NestedEnumOrderTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumOrderTypeNullableFilter | No |
| _max | NestedEnumOrderTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RealmTraitType | No |
| in | RealmTraitType[] | No |
| notIn | RealmTraitType[] | No |
| not | RealmTraitType | NestedEnumRealmTraitTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | RealmTraitType | No |
| in | RealmTraitType[] | No |
| notIn | RealmTraitType[] | No |
| not | RealmTraitType | NestedEnumRealmTraitTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRealmTraitTypeFilter | No |
| _max | NestedEnumRealmTraitTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | No |
| notIn | Decimal[] | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | No |
| notIn | Decimal[] | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ExchangeEventType | No |
| in | ExchangeEventType[] | No |
| notIn | ExchangeEventType[] | No |
| not | ExchangeEventType | NestedEnumExchangeEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ExchangeEventType | No |
| in | ExchangeEventType[] | No |
| notIn | ExchangeEventType[] | No |
| not | ExchangeEventType | NestedEnumExchangeEventTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumExchangeEventTypeFilter | No |
| _max | NestedEnumExchangeEventTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RealmCreateManyWalletInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| data | RealmCreateManyWalletL2Input[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutWalletSettledInput | RealmUncheckedCreateWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RealmCreateManyWalletSettledInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutWalletInput | RealmUncheckedUpdateWithoutWalletInput | No |
| create | RealmCreateWithoutWalletInput | RealmUncheckedCreateWithoutWalletInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| data | RealmUpdateWithoutWalletInput | RealmUncheckedUpdateWithoutWalletInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmScalarWhereInput | No |
| data | RealmUpdateManyMutationInput | RealmUncheckedUpdateManyWithoutRealmsL1Input | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RealmScalarWhereInput | RealmScalarWhereInput[] | No |
| OR | RealmScalarWhereInput[] | No |
| NOT | RealmScalarWhereInput | RealmScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| realmId | IntFilter | Int | No |
| name | StringNullableFilter | String | Null | Yes |
| owner | StringNullableFilter | String | Null | Yes |
| bridgedOwner | StringNullableFilter | String | Null | Yes |
| ownerL2 | StringNullableFilter | String | Null | Yes |
| settledOwner | StringNullableFilter | String | Null | Yes |
| wonder | StringNullableFilter | String | Null | Yes |
| rarityRank | IntFilter | Int | No |
| rarityScore | FloatFilter | Float | No |
| imageUrl | StringFilter | String | No |
| orderType | EnumOrderTypeNullableFilter | OrderType | Null | Yes |
| lastAttacked | DateTimeNullableFilter | DateTime | Null | Yes |
| lastClaimTime | DateTimeNullableFilter | DateTime | Null | Yes |
| lastTick | DateTimeNullableFilter | DateTime | Null | Yes |
| lastVaultTime | DateTimeNullableFilter | DateTime | Null | Yes |
| longitude | FloatFilter | Float | No |
| latitude | FloatFilter | Float | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutWalletL2Input | RealmUncheckedUpdateWithoutWalletL2Input | No |
| create | RealmCreateWithoutWalletL2Input | RealmUncheckedCreateWithoutWalletL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| data | RealmUpdateWithoutWalletL2Input | RealmUncheckedUpdateWithoutWalletL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmScalarWhereInput | No |
| data | RealmUpdateManyMutationInput | RealmUncheckedUpdateManyWithoutRealmsL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| update | RealmUpdateWithoutWalletSettledInput | RealmUncheckedUpdateWithoutWalletSettledInput | No |
| create | RealmCreateWithoutWalletSettledInput | RealmUncheckedCreateWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| data | RealmUpdateWithoutWalletSettledInput | RealmUncheckedUpdateWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmScalarWhereInput | No |
| data | RealmUpdateManyMutationInput | RealmUncheckedUpdateManyWithoutRealmsSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | No |
| realmsL2 | RealmCreateNestedManyWithoutWalletL2Input | No |
| realmsSettled | RealmCreateNestedManyWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| realmsL2 | RealmUncheckedCreateNestedManyWithoutWalletL2Input | No |
| realmsSettled | RealmUncheckedCreateNestedManyWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | WalletWhereUniqueInput | No |
| create | WalletCreateWithoutRealmsL1Input | WalletUncheckedCreateWithoutRealmsL1Input | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | No |
| realmsL1 | RealmCreateNestedManyWithoutWalletInput | No |
| realmsSettled | RealmCreateNestedManyWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| realmsL1 | RealmUncheckedCreateNestedManyWithoutWalletInput | No |
| realmsSettled | RealmUncheckedCreateNestedManyWithoutWalletSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | WalletWhereUniqueInput | No |
| create | WalletCreateWithoutRealmsL2Input | WalletUncheckedCreateWithoutRealmsL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | No |
| realmsL1 | RealmCreateNestedManyWithoutWalletInput | No |
| realmsL2 | RealmCreateNestedManyWithoutWalletL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| realmsL1 | RealmUncheckedCreateNestedManyWithoutWalletInput | No |
| realmsL2 | RealmUncheckedCreateNestedManyWithoutWalletL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| where | WalletWhereUniqueInput | No |
| create | WalletCreateWithoutRealmsSettledInput | WalletUncheckedCreateWithoutRealmsSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmHolder | RealmCreateNestedOneWithoutRelicsOwnedInput | No |
| Name | Type | Nullable |
|---|---|---|
| heldByRealm | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | RelicWhereUniqueInput | No |
| create | RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| eventId | String | No |
| buildingIntegrity | Int | No |
| builds | BuildingCreatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| buildingId | Int | No |
| eventId | String | No |
| buildingIntegrity | Int | No |
| builds | BuildingCreatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BuildingWhereUniqueInput | No |
| create | BuildingCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BuildingCreateManyRealmInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| labor | LaborCreateNestedOneWithoutResoureInput | No |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| labor | LaborUncheckedCreateNestedOneWithoutResoureInput | No |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ResourceWhereUniqueInput | No |
| create | ResourceCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ResourceCreateManyRealmInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| originRealm | RealmCreateNestedOneWithoutRelicInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | RelicWhereUniqueInput | No |
| create | RelicCreateWithoutRealmHolderInput | RelicUncheckedCreateWithoutRealmHolderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RelicCreateManyRealmHolderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmTraitWhereUniqueInput | No |
| create | RealmTraitCreateWithoutRealmInput | RealmTraitUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RealmTraitCreateManyRealmInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TroopWhereUniqueInput | No |
| create | TroopCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TroopCreateManyRealmInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | Null | Yes |
| armyPacked | Int | No |
| lastAttacked | DateTime | Null | Yes |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | Null | Yes |
| armyPacked | Int | No |
| lastAttacked | DateTime | Null | Yes |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | ArmyWhereUniqueInput | No |
| create | ArmyCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ArmyCreateManyOwnRealmInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | WalletUpdateWithoutRealmsL1Input | WalletUncheckedUpdateWithoutRealmsL1Input | No |
| create | WalletCreateWithoutRealmsL1Input | WalletUncheckedCreateWithoutRealmsL1Input | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL2 | RealmUpdateManyWithoutWalletL2NestedInput | No |
| realmsSettled | RealmUpdateManyWithoutWalletSettledNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL2 | RealmUncheckedUpdateManyWithoutWalletL2NestedInput | No |
| realmsSettled | RealmUncheckedUpdateManyWithoutWalletSettledNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | WalletUpdateWithoutRealmsL2Input | WalletUncheckedUpdateWithoutRealmsL2Input | No |
| create | WalletCreateWithoutRealmsL2Input | WalletUncheckedCreateWithoutRealmsL2Input | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL1 | RealmUpdateManyWithoutWalletNestedInput | No |
| realmsSettled | RealmUpdateManyWithoutWalletSettledNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL1 | RealmUncheckedUpdateManyWithoutWalletNestedInput | No |
| realmsSettled | RealmUncheckedUpdateManyWithoutWalletSettledNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | WalletUpdateWithoutRealmsSettledInput | WalletUncheckedUpdateWithoutRealmsSettledInput | No |
| create | WalletCreateWithoutRealmsSettledInput | WalletUncheckedCreateWithoutRealmsSettledInput | No |
| Name | Type | Nullable |
|---|---|---|
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL1 | RealmUpdateManyWithoutWalletNestedInput | No |
| realmsL2 | RealmUpdateManyWithoutWalletL2NestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| address | String | StringFieldUpdateOperationsInput | No |
| realmsL1 | RealmUncheckedUpdateManyWithoutWalletNestedInput | No |
| realmsL2 | RealmUncheckedUpdateManyWithoutWalletL2NestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RelicUpdateWithoutOriginRealmInput | RelicUncheckedUpdateWithoutOriginRealmInput | No |
| create | RelicCreateWithoutOriginRealmInput | RelicUncheckedCreateWithoutOriginRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmHolder | RealmUpdateOneWithoutRelicsOwnedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| heldByRealm | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BuildingWhereUniqueInput | No |
| update | BuildingUpdateWithoutRealmInput | BuildingUncheckedUpdateWithoutRealmInput | No |
| create | BuildingCreateWithoutRealmInput | BuildingUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BuildingWhereUniqueInput | No |
| data | BuildingUpdateWithoutRealmInput | BuildingUncheckedUpdateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BuildingScalarWhereInput | No |
| data | BuildingUpdateManyMutationInput | BuildingUncheckedUpdateManyWithoutBuildingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BuildingScalarWhereInput | BuildingScalarWhereInput[] | No |
| OR | BuildingScalarWhereInput[] | No |
| NOT | BuildingScalarWhereInput | BuildingScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| buildingId | IntFilter | Int | No |
| realmId | IntNullableFilter | Int | Null | Yes |
| eventId | StringFilter | String | No |
| buildingIntegrity | IntFilter | Int | No |
| builds | StringNullableListFilter | No |
| Name | Type | Nullable |
|---|---|---|
| where | ResourceWhereUniqueInput | No |
| update | ResourceUpdateWithoutRealmInput | ResourceUncheckedUpdateWithoutRealmInput | No |
| create | ResourceCreateWithoutRealmInput | ResourceUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ResourceWhereUniqueInput | No |
| data | ResourceUpdateWithoutRealmInput | ResourceUncheckedUpdateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ResourceScalarWhereInput | No |
| data | ResourceUpdateManyMutationInput | ResourceUncheckedUpdateManyWithoutResourcesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ResourceScalarWhereInput | ResourceScalarWhereInput[] | No |
| OR | ResourceScalarWhereInput[] | No |
| NOT | ResourceScalarWhereInput | ResourceScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| resourceId | IntFilter | Int | No |
| realmId | IntNullableFilter | Int | Null | Yes |
| level | IntFilter | Int | No |
| upgrades | StringNullableListFilter | No |
| Name | Type | Nullable |
|---|---|---|
| where | RelicWhereUniqueInput | No |
| update | RelicUpdateWithoutRealmHolderInput | RelicUncheckedUpdateWithoutRealmHolderInput | No |
| create | RelicCreateWithoutRealmHolderInput | RelicUncheckedCreateWithoutRealmHolderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RelicWhereUniqueInput | No |
| data | RelicUpdateWithoutRealmHolderInput | RelicUncheckedUpdateWithoutRealmHolderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RelicScalarWhereInput | No |
| data | RelicUpdateManyMutationInput | RelicUncheckedUpdateManyWithoutRelicsOwnedInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RelicScalarWhereInput | RelicScalarWhereInput[] | No |
| OR | RelicScalarWhereInput[] | No |
| NOT | RelicScalarWhereInput | RelicScalarWhereInput[] | No |
| realmId | IntFilter | Int | No |
| heldByRealm | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmTraitWhereUniqueInput | No |
| update | RealmTraitUpdateWithoutRealmInput | RealmTraitUncheckedUpdateWithoutRealmInput | No |
| create | RealmTraitCreateWithoutRealmInput | RealmTraitUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmTraitWhereUniqueInput | No |
| data | RealmTraitUpdateWithoutRealmInput | RealmTraitUncheckedUpdateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmTraitScalarWhereInput | No |
| data | RealmTraitUpdateManyMutationInput | RealmTraitUncheckedUpdateManyWithoutTraitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RealmTraitScalarWhereInput | RealmTraitScalarWhereInput[] | No |
| OR | RealmTraitScalarWhereInput[] | No |
| NOT | RealmTraitScalarWhereInput | RealmTraitScalarWhereInput[] | No |
| type | EnumRealmTraitTypeFilter | RealmTraitType | No |
| qty | IntFilter | Int | No |
| realmId | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | TroopWhereUniqueInput | No |
| update | TroopUpdateWithoutRealmInput | TroopUncheckedUpdateWithoutRealmInput | No |
| create | TroopCreateWithoutRealmInput | TroopUncheckedCreateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TroopWhereUniqueInput | No |
| data | TroopUpdateWithoutRealmInput | TroopUncheckedUpdateWithoutRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TroopScalarWhereInput | No |
| data | TroopUpdateManyMutationInput | TroopUncheckedUpdateManyWithoutSquadInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TroopScalarWhereInput | TroopScalarWhereInput[] | No |
| OR | TroopScalarWhereInput[] | No |
| NOT | TroopScalarWhereInput | TroopScalarWhereInput[] | No |
| realmId | IntFilter | Int | No |
| troopId | IntFilter | Int | No |
| index | IntFilter | Int | No |
| type | IntFilter | Int | No |
| tier | IntFilter | Int | No |
| building | IntFilter | Int | No |
| agility | IntFilter | Int | No |
| attack | IntFilter | Int | No |
| armor | IntFilter | Int | No |
| vitality | IntFilter | Int | No |
| wisdom | IntFilter | Int | No |
| squadSlot | IntFilter | Int | No |
| timestamp | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ArmyWhereUniqueInput | No |
| update | ArmyUpdateWithoutOwnRealmInput | ArmyUncheckedUpdateWithoutOwnRealmInput | No |
| create | ArmyCreateWithoutOwnRealmInput | ArmyUncheckedCreateWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ArmyWhereUniqueInput | No |
| data | ArmyUpdateWithoutOwnRealmInput | ArmyUncheckedUpdateWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ArmyScalarWhereInput | No |
| data | ArmyUpdateManyMutationInput | ArmyUncheckedUpdateManyWithoutOwnArmiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ArmyScalarWhereInput | ArmyScalarWhereInput[] | No |
| OR | ArmyScalarWhereInput[] | No |
| NOT | ArmyScalarWhereInput | ArmyScalarWhereInput[] | No |
| realmId | IntFilter | Int | No |
| armyId | IntFilter | Int | No |
| destinationRealmId | IntFilter | Int | No |
| destinationArrivalTime | DateTimeNullableFilter | DateTime | Null | Yes |
| armyPacked | IntFilter | Int | No |
| lastAttacked | DateTimeNullableFilter | DateTime | Null | Yes |
| xp | IntFilter | Int | No |
| level | IntFilter | Int | No |
| callSign | IntFilter | Int | No |
| lightCavalryQty | IntFilter | Int | No |
| lightCavalryHealth | IntFilter | Int | No |
| heavyCavalryQty | IntFilter | Int | No |
| heavyCavalryHealth | IntFilter | Int | No |
| archerQty | IntFilter | Int | No |
| archerHealth | IntFilter | Int | No |
| longbowQty | IntFilter | Int | No |
| longbowHealth | IntFilter | Int | No |
| mageQty | IntFilter | Int | No |
| mageHealth | IntFilter | Int | No |
| arcanistQty | IntFilter | Int | No |
| arcanistHealth | IntFilter | Int | No |
| lightInfantryQty | IntFilter | Int | No |
| lightInfantryHealth | IntFilter | Int | No |
| heavyInfantryQty | IntFilter | Int | No |
| heavyInfantryHealth | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutBuildingsInput | RealmUncheckedCreateWithoutBuildingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RealmUpdateWithoutBuildingsInput | RealmUncheckedUpdateWithoutBuildingsInput | No |
| create | RealmCreateWithoutBuildingsInput | RealmUncheckedCreateWithoutBuildingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutRelicInput | RealmUncheckedCreateWithoutRelicInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutRelicsOwnedInput | RealmUncheckedCreateWithoutRelicsOwnedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RealmUpdateWithoutRelicInput | RealmUncheckedUpdateWithoutRelicInput | No |
| create | RealmCreateWithoutRelicInput | RealmUncheckedCreateWithoutRelicInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RealmUpdateWithoutRelicsOwnedInput | RealmUncheckedUpdateWithoutRelicsOwnedInput | No |
| create | RealmCreateWithoutRelicsOwnedInput | RealmUncheckedCreateWithoutRelicsOwnedInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutResourcesInput | RealmUncheckedCreateWithoutResourcesInput | No |
| Name | Type | Nullable |
|---|---|---|
| vaultBalance | DateTime | Null | Yes |
| balance | DateTime | Null | Yes |
| lastUpdate | DateTime | Null | Yes |
| lastEventId | String | Null | Yes |
| qtyBuilt | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| vaultBalance | DateTime | Null | Yes |
| balance | DateTime | Null | Yes |
| lastUpdate | DateTime | Null | Yes |
| lastEventId | String | Null | Yes |
| qtyBuilt | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | LaborWhereUniqueInput | No |
| create | LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RealmUpdateWithoutResourcesInput | RealmUncheckedUpdateWithoutResourcesInput | No |
| create | RealmCreateWithoutResourcesInput | RealmUncheckedCreateWithoutResourcesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LaborUpdateWithoutResoureInput | LaborUncheckedUpdateWithoutResoureInput | No |
| create | LaborCreateWithoutResoureInput | LaborUncheckedCreateWithoutResoureInput | No |
| Name | Type | Nullable |
|---|---|---|
| vaultBalance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| balance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastUpdate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| qtyBuilt | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| vaultBalance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| balance | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastUpdate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| lastEventId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| qtyBuilt | Int | IntFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| realm | RealmCreateNestedOneWithoutResourcesInput | No |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| realmId | Int | Null | Yes |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ResourceWhereUniqueInput | No |
| create | ResourceCreateWithoutLaborInput | ResourceUncheckedCreateWithoutLaborInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ResourceUpdateWithoutLaborInput | ResourceUncheckedUpdateWithoutLaborInput | No |
| create | ResourceCreateWithoutLaborInput | ResourceUncheckedCreateWithoutLaborInput | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| realm | RealmUpdateOneWithoutResourcesNestedInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| realmId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutTraitsInput | RealmUncheckedCreateWithoutTraitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RealmUpdateWithoutTraitsInput | RealmUncheckedUpdateWithoutTraitsInput | No |
| create | RealmCreateWithoutTraitsInput | RealmUncheckedCreateWithoutTraitsInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| ownArmies | ArmyUncheckedCreateNestedManyWithoutOwnRealmInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutSquadInput | RealmUncheckedCreateWithoutSquadInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RealmUpdateWithoutSquadInput | RealmUncheckedUpdateWithoutSquadInput | No |
| create | RealmCreateWithoutSquadInput | RealmUncheckedCreateWithoutSquadInput | No |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| eventIndexed | String | Null | Yes |
| pois | LorePoisOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput | No |
| props | LorePropsOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| eventIndexed | String | Null | Yes |
| pois | LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput | No |
| props | LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | No |
| create | LoreEntityRevisionCreateWithoutEntityInput | LoreEntityRevisionUncheckedCreateWithoutEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LoreEntityRevisionCreateManyEntityInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | No |
| update | LoreEntityRevisionUpdateWithoutEntityInput | LoreEntityRevisionUncheckedUpdateWithoutEntityInput | No |
| create | LoreEntityRevisionCreateWithoutEntityInput | LoreEntityRevisionUncheckedCreateWithoutEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | No |
| data | LoreEntityRevisionUpdateWithoutEntityInput | LoreEntityRevisionUncheckedUpdateWithoutEntityInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoreEntityRevisionScalarWhereInput | No |
| data | LoreEntityRevisionUpdateManyMutationInput | LoreEntityRevisionUncheckedUpdateManyWithoutRevisionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LoreEntityRevisionScalarWhereInput | LoreEntityRevisionScalarWhereInput[] | No |
| OR | LoreEntityRevisionScalarWhereInput[] | No |
| NOT | LoreEntityRevisionScalarWhereInput | LoreEntityRevisionScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| revisionNumber | IntFilter | Int | No |
| arweaveId | StringFilter | String | No |
| title | StringNullableFilter | String | Null | Yes |
| markdown | StringNullableFilter | String | Null | Yes |
| excerpt | StringNullableFilter | String | Null | Yes |
| media_url | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeNullableFilter | DateTime | Null | Yes |
| entityId | IntFilter | Int | No |
| eventIndexed | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| owner | String | Null | Yes |
| ownerDisplayName | String | Null | Yes |
| kind | Int | No |
| eventIndexed | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| owner | String | Null | Yes |
| ownerDisplayName | String | Null | Yes |
| kind | Int | No |
| eventIndexed | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LoreEntityWhereUniqueInput | No |
| create | LoreEntityCreateWithoutRevisionsInput | LoreEntityUncheckedCreateWithoutRevisionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| poi | LorePOICreateNestedOneWithoutEntitiesInput | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| poiId | Int | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereUniqueInput | No |
| create | LorePoisOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LorePoisOnEntityRevisionsCreateManyEntityRevisionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| prop | LorePropCreateNestedOneWithoutEntitiesInput | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| propId | Int | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereUniqueInput | No |
| create | LorePropsOnEntityRevisionsCreateWithoutEntityRevisionInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LorePropsOnEntityRevisionsCreateManyEntityRevisionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | LoreEntityUpdateWithoutRevisionsInput | LoreEntityUncheckedUpdateWithoutRevisionsInput | No |
| create | LoreEntityCreateWithoutRevisionsInput | LoreEntityUncheckedCreateWithoutRevisionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| owner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| ownerDisplayName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| kind | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| owner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| ownerDisplayName | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| kind | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LorePoisOnEntityRevisionsScalarWhereInput | No |
| data | LorePoisOnEntityRevisionsUpdateManyMutationInput | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutPoisInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] | No |
| OR | LorePoisOnEntityRevisionsScalarWhereInput[] | No |
| NOT | LorePoisOnEntityRevisionsScalarWhereInput | LorePoisOnEntityRevisionsScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| entityRevisionId | IntFilter | Int | No |
| poiId | IntFilter | Int | No |
| assetId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LorePropsOnEntityRevisionsScalarWhereInput | No |
| data | LorePropsOnEntityRevisionsUpdateManyMutationInput | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutPropsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] | No |
| OR | LorePropsOnEntityRevisionsScalarWhereInput[] | No |
| NOT | LorePropsOnEntityRevisionsScalarWhereInput | LorePropsOnEntityRevisionsScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| entityRevisionId | IntFilter | Int | No |
| propId | IntFilter | Int | No |
| value | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionCreateNestedOneWithoutPoisInput | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereUniqueInput | No |
| create | LorePoisOnEntityRevisionsCreateWithoutPoiInput | LorePoisOnEntityRevisionsUncheckedCreateWithoutPoiInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LorePoisOnEntityRevisionsCreateManyPoiInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | LorePoisOnEntityRevisionsWhereUniqueInput | No |
| data | LorePoisOnEntityRevisionsUpdateWithoutPoiInput | LorePoisOnEntityRevisionsUncheckedUpdateWithoutPoiInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LorePoisOnEntityRevisionsScalarWhereInput | No |
| data | LorePoisOnEntityRevisionsUpdateManyMutationInput | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionCreateNestedOneWithoutPropsInput | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereUniqueInput | No |
| create | LorePropsOnEntityRevisionsCreateWithoutPropInput | LorePropsOnEntityRevisionsUncheckedCreateWithoutPropInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LorePropsOnEntityRevisionsCreateManyPropInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | LorePropsOnEntityRevisionsWhereUniqueInput | No |
| data | LorePropsOnEntityRevisionsUpdateWithoutPropInput | LorePropsOnEntityRevisionsUncheckedUpdateWithoutPropInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LorePropsOnEntityRevisionsScalarWhereInput | No |
| data | LorePropsOnEntityRevisionsUpdateManyMutationInput | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| entity | LoreEntityCreateNestedOneWithoutRevisionsInput | No |
| eventIndexed | String | Null | Yes |
| props | LorePropsOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| entityId | Int | No |
| eventIndexed | String | Null | Yes |
| props | LorePropsOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | No |
| create | LoreEntityRevisionCreateWithoutPoisInput | LoreEntityRevisionUncheckedCreateWithoutPoisInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| assetType | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| assetType | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LorePOIWhereUniqueInput | No |
| create | LorePOICreateWithoutEntitiesInput | LorePOIUncheckedCreateWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LoreEntityRevisionUpdateWithoutPoisInput | LoreEntityRevisionUncheckedUpdateWithoutPoisInput | No |
| create | LoreEntityRevisionCreateWithoutPoisInput | LoreEntityRevisionUncheckedCreateWithoutPoisInput | No |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| entity | LoreEntityUpdateOneRequiredWithoutRevisionsNestedInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| props | LorePropsOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| entityId | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| props | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LorePOIUpdateWithoutEntitiesInput | LorePOIUncheckedUpdateWithoutEntitiesInput | No |
| create | LorePOICreateWithoutEntitiesInput | LorePOIUncheckedCreateWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| assetType | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| assetType | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| entity | LoreEntityCreateNestedOneWithoutRevisionsInput | No |
| eventIndexed | String | Null | Yes |
| pois | LorePoisOnEntityRevisionsCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| entityId | Int | No |
| eventIndexed | String | Null | Yes |
| pois | LorePoisOnEntityRevisionsUncheckedCreateNestedManyWithoutEntityRevisionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoreEntityRevisionWhereUniqueInput | No |
| create | LoreEntityRevisionCreateWithoutPropsInput | LoreEntityRevisionUncheckedCreateWithoutPropsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | LorePropWhereUniqueInput | No |
| create | LorePropCreateWithoutEntitiesInput | LorePropUncheckedCreateWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LoreEntityRevisionUpdateWithoutPropsInput | LoreEntityRevisionUncheckedUpdateWithoutPropsInput | No |
| create | LoreEntityRevisionCreateWithoutPropsInput | LoreEntityRevisionUncheckedCreateWithoutPropsInput | No |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| entity | LoreEntityUpdateOneRequiredWithoutRevisionsNestedInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pois | LorePoisOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| entityId | Int | IntFieldUpdateOperationsInput | No |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pois | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LorePropUpdateWithoutEntitiesInput | LorePropUncheckedUpdateWithoutEntitiesInput | No |
| create | LorePropCreateWithoutEntitiesInput | LorePropUncheckedCreateWithoutEntitiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| name | String | Null | Yes |
| wallet | WalletCreateNestedOneWithoutRealmsL1Input | No |
| bridgedOwner | String | Null | Yes |
| walletL2 | WalletCreateNestedOneWithoutRealmsL2Input | No |
| walletSettled | WalletCreateNestedOneWithoutRealmsSettledInput | No |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingCreateNestedManyWithoutRealmInput | No |
| resources | ResourceCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitCreateNestedManyWithoutRealmInput | No |
| squad | TroopCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| relic | RelicUncheckedCreateNestedOneWithoutOriginRealmInput | No |
| orderType | OrderType | Null | Yes |
| buildings | BuildingUncheckedCreateNestedManyWithoutRealmInput | No |
| resources | ResourceUncheckedCreateNestedManyWithoutRealmInput | No |
| relicsOwned | RelicUncheckedCreateNestedManyWithoutRealmHolderInput | No |
| traits | RealmTraitUncheckedCreateNestedManyWithoutRealmInput | No |
| squad | TroopUncheckedCreateNestedManyWithoutRealmInput | No |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| where | RealmWhereUniqueInput | No |
| create | RealmCreateWithoutOwnArmiesInput | RealmUncheckedCreateWithoutOwnArmiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | RealmUpdateWithoutOwnArmiesInput | RealmUncheckedUpdateWithoutOwnArmiesInput | No |
| create | RealmCreateWithoutOwnArmiesInput | RealmUncheckedCreateWithoutOwnArmiesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | Null | Yes |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| settledOwner | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | Null | Yes |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | Null | Yes |
| owner | String | Null | Yes |
| bridgedOwner | String | Null | Yes |
| ownerL2 | String | Null | Yes |
| wonder | String | Null | Yes |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | Null | Yes |
| lastAttacked | DateTime | Null | Yes |
| lastClaimTime | DateTime | Null | Yes |
| lastTick | DateTime | Null | Yes |
| lastVaultTime | DateTime | Null | Yes |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| buildingId | Int | No |
| eventId | String | No |
| buildingIntegrity | Int | No |
| builds | BuildingCreatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| level | Int | No |
| upgrades | ResourceCreateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | Null | Yes |
| armyPacked | Int | No |
| lastAttacked | DateTime | Null | Yes |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| buildingIntegrity | Int | IntFieldUpdateOperationsInput | No |
| builds | BuildingUpdatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| buildingIntegrity | Int | IntFieldUpdateOperationsInput | No |
| builds | BuildingUpdatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| buildingId | Int | IntFieldUpdateOperationsInput | No |
| eventId | String | StringFieldUpdateOperationsInput | No |
| buildingIntegrity | Int | IntFieldUpdateOperationsInput | No |
| builds | BuildingUpdatebuildsInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| labor | LaborUpdateOneWithoutResoureNestedInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| labor | LaborUncheckedUpdateOneWithoutResoureNestedInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| resourceId | Int | IntFieldUpdateOperationsInput | No |
| level | Int | IntFieldUpdateOperationsInput | No |
| upgrades | ResourceUpdateupgradesInput | String | No |
| Name | Type | Nullable |
|---|---|---|
| originRealm | RealmUpdateOneWithoutRelicNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | EnumRealmTraitTypeFieldUpdateOperationsInput | No |
| qty | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | IntFieldUpdateOperationsInput | No |
| index | Int | IntFieldUpdateOperationsInput | No |
| type | Int | IntFieldUpdateOperationsInput | No |
| tier | Int | IntFieldUpdateOperationsInput | No |
| building | Int | IntFieldUpdateOperationsInput | No |
| agility | Int | IntFieldUpdateOperationsInput | No |
| attack | Int | IntFieldUpdateOperationsInput | No |
| armor | Int | IntFieldUpdateOperationsInput | No |
| vitality | Int | IntFieldUpdateOperationsInput | No |
| wisdom | Int | IntFieldUpdateOperationsInput | No |
| squadSlot | Int | IntFieldUpdateOperationsInput | No |
| timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | IntFieldUpdateOperationsInput | No |
| index | Int | IntFieldUpdateOperationsInput | No |
| type | Int | IntFieldUpdateOperationsInput | No |
| tier | Int | IntFieldUpdateOperationsInput | No |
| building | Int | IntFieldUpdateOperationsInput | No |
| agility | Int | IntFieldUpdateOperationsInput | No |
| attack | Int | IntFieldUpdateOperationsInput | No |
| armor | Int | IntFieldUpdateOperationsInput | No |
| vitality | Int | IntFieldUpdateOperationsInput | No |
| wisdom | Int | IntFieldUpdateOperationsInput | No |
| squadSlot | Int | IntFieldUpdateOperationsInput | No |
| timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| troopId | Int | IntFieldUpdateOperationsInput | No |
| index | Int | IntFieldUpdateOperationsInput | No |
| type | Int | IntFieldUpdateOperationsInput | No |
| tier | Int | IntFieldUpdateOperationsInput | No |
| building | Int | IntFieldUpdateOperationsInput | No |
| agility | Int | IntFieldUpdateOperationsInput | No |
| attack | Int | IntFieldUpdateOperationsInput | No |
| armor | Int | IntFieldUpdateOperationsInput | No |
| vitality | Int | IntFieldUpdateOperationsInput | No |
| wisdom | Int | IntFieldUpdateOperationsInput | No |
| squadSlot | Int | IntFieldUpdateOperationsInput | No |
| timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | Null | Yes |
| markdown | String | Null | Yes |
| excerpt | String | Null | Yes |
| media_url | String | Null | Yes |
| createdAt | DateTime | Null | Yes |
| eventIndexed | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pois | LorePoisOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput | No |
| props | LorePropsOnEntityRevisionsUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pois | LorePoisOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput | No |
| props | LorePropsOnEntityRevisionsUncheckedUpdateManyWithoutEntityRevisionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| revisionNumber | Int | IntFieldUpdateOperationsInput | No |
| arweaveId | String | StringFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| markdown | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| excerpt | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_url | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| eventIndexed | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| poiId | Int | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| propId | Int | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| poi | LorePOIUpdateOneRequiredWithoutEntitiesNestedInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| poiId | Int | IntFieldUpdateOperationsInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| poiId | Int | IntFieldUpdateOperationsInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| prop | LorePropUpdateOneRequiredWithoutEntitiesNestedInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| propId | Int | IntFieldUpdateOperationsInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| propId | Int | IntFieldUpdateOperationsInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| assetId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionUpdateOneRequiredWithoutPoisNestedInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| assetId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| value | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| entityRevision | LoreEntityRevisionUpdateOneRequiredWithoutPropsNestedInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| entityRevisionId | Int | IntFieldUpdateOperationsInput | No |
| value | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| address | String | Yes |
| realmsL1 | Realm[] | No |
| realmsL2 | Realm[] | No |
| realmsSettled | Realm[] | No |
| _count | WalletCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| name | String | No |
| wallet | Wallet | No |
| owner | String | No |
| bridgedOwner | String | No |
| ownerL2 | String | No |
| walletL2 | Wallet | No |
| settledOwner | String | No |
| walletSettled | Wallet | No |
| wonder | String | No |
| rarityRank | Int | Yes |
| rarityScore | Float | Yes |
| imageUrl | String | Yes |
| relic | Relic | No |
| orderType | OrderType | No |
| buildings | Building[] | No |
| resources | Resource[] | No |
| relicsOwned | Relic[] | No |
| traits | RealmTrait[] | No |
| squad | Troop[] | No |
| lastAttacked | DateTime | No |
| lastClaimTime | DateTime | No |
| lastTick | DateTime | No |
| lastVaultTime | DateTime | No |
| longitude | Float | Yes |
| latitude | Float | Yes |
| ownArmies | Army[] | No |
| _count | RealmCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| buildingId | Int | Yes |
| realmId | Int | No |
| eventId | String | Yes |
| buildingIntegrity | Int | Yes |
| realm | Realm | No |
| builds | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| buildingId | Int | Yes |
| eventId | String | Yes |
| qty | Int | Yes |
| harvests | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| originRealm | Realm | No |
| heldByRealm | Int | Yes |
| realmHolder | Realm | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | Yes |
| traitType | RealmTraitType | Yes |
| max | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resourceId | Int | Yes |
| realmId | Int | No |
| realm | Realm | No |
| labor | Labor | No |
| level | Int | Yes |
| upgrades | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| resourceId | Int | Yes |
| vaultBalance | DateTime | No |
| balance | DateTime | No |
| lastUpdate | DateTime | No |
| lastEventId | String | No |
| qtyBuilt | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| resoure | Resource | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| address | String | Yes |
| tokenId | Int | Yes |
| amount | String | Yes |
| lastEventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | Yes |
| qty | Int | Yes |
| realmId | Int | Yes |
| realm | Realm | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| troopId | Int | Yes |
| index | Int | Yes |
| type | Int | Yes |
| tier | Int | Yes |
| building | Int | Yes |
| agility | Int | Yes |
| attack | Int | Yes |
| armor | Int | Yes |
| vitality | Int | Yes |
| wisdom | Int | Yes |
| squadSlot | Int | Yes |
| timestamp | DateTime | No |
| Realm | Realm | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| gameId | Int | Yes |
| winner | Int | No |
| attackedTokens | Int | No |
| defendedTokens | Int | No |
| damageInflicted | Int | No |
| eventIndexed | String | No |
| initialHealth | Int | No |
| startBlock | Int | Yes |
| endBlock | Int | Yes |
| startedOn | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| gameId | Int | Yes |
| account | String | Yes |
| amount | Int | Yes |
| amountBoosted | Int | Yes |
| tokenOffset | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | String | Yes |
| blockNumber | Int | Yes |
| transactionNumber | Int | Yes |
| chainId | String | Yes |
| contract | String | Yes |
| name | String | Yes |
| parameters | String | No |
| keys | String | No |
| timestamp | DateTime | Yes |
| txHash | String | Yes |
| status | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | Yes |
| eventId | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| owner | String | No |
| ownerDisplayName | String | No |
| kind | Int | Yes |
| eventIndexed | String | No |
| revisions | LoreEntityRevision[] | No |
| _count | LoreEntityCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| revisionNumber | Int | Yes |
| arweaveId | String | Yes |
| title | String | No |
| markdown | String | No |
| excerpt | String | No |
| media_url | String | No |
| createdAt | DateTime | No |
| entity | LoreEntity | Yes |
| entityId | Int | Yes |
| eventIndexed | String | No |
| pois | LorePoisOnEntityRevisions[] | No |
| props | LorePropsOnEntityRevisions[] | No |
| _count | LoreEntityRevisionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| assetType | String | No |
| entities | LorePoisOnEntityRevisions[] | No |
| _count | LorePOICountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| entities | LorePropsOnEntityRevisions[] | No |
| _count | LorePropCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| entityRevision | LoreEntityRevision | Yes |
| entityRevisionId | Int | Yes |
| poi | LorePOI | Yes |
| poiId | Int | Yes |
| assetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| entityRevision | LoreEntityRevision | Yes |
| entityRevisionId | Int | Yes |
| prop | LoreProp | Yes |
| propId | Int | Yes |
| value | String | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | Yes |
| hour | Int | Yes |
| tokenId | Int | Yes |
| amount | String | Yes |
| buyAmount | String | Yes |
| sellAmount | String | Yes |
| currencyReserve | String | Yes |
| tokenReserve | String | Yes |
| lpAmount | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | String | Yes |
| eventType | String | Yes |
| realmId | Int | Yes |
| realmOwner | String | Yes |
| realmName | String | Yes |
| realmOrder | OrderType | No |
| data | Json | Yes |
| timestamp | DateTime | Yes |
| transactionHash | String | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | String | Yes |
| eventType | String | Yes |
| attackRealmId | Int | Yes |
| attackRealmOwner | String | Yes |
| attackSquad | Json | Yes |
| defendRealmId | Int | Yes |
| defendRealmOwner | String | Yes |
| defendSquad | Json | Yes |
| timestamp | DateTime | Yes |
| transactionHash | String | Yes |
| outcome | Int | Yes |
| attackType | Int | Yes |
| hitPoints | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | Yes |
| eventId | String | Yes |
| blockNumber | Int | Yes |
| transactionNumber | Int | Yes |
| fromAddress | String | Yes |
| toAddress | String | Yes |
| amount | String | Yes |
| amountValue | Decimal | Yes |
| transactionHash | String | Yes |
| timestamp | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| armyId | Int | Yes |
| destinationRealmId | Int | Yes |
| destinationArrivalTime | DateTime | No |
| armyPacked | Int | Yes |
| lastAttacked | DateTime | No |
| xp | Int | Yes |
| level | Int | Yes |
| callSign | Int | Yes |
| lightCavalryQty | Int | Yes |
| lightCavalryHealth | Int | Yes |
| heavyCavalryQty | Int | Yes |
| heavyCavalryHealth | Int | Yes |
| archerQty | Int | Yes |
| archerHealth | Int | Yes |
| longbowQty | Int | Yes |
| longbowHealth | Int | Yes |
| mageQty | Int | Yes |
| mageHealth | Int | Yes |
| arcanistQty | Int | Yes |
| arcanistHealth | Int | Yes |
| lightInfantryQty | Int | Yes |
| lightInfantryHealth | Int | Yes |
| heavyInfantryQty | Int | Yes |
| heavyInfantryHealth | Int | Yes |
| ownRealm | Realm | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| contractId | Int | Yes |
| tokenId | Int | Yes |
| nestedId | Int | Yes |
| locationContractId | Int | Yes |
| locationTokenId | Int | Yes |
| locationNestedId | Int | Yes |
| destinationContractId | Int | Yes |
| destinationTokenId | Int | Yes |
| destinationNestedId | Int | Yes |
| destinationArrivalTime | DateTime | Yes |
| timestamp | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| type | ExchangeEventType | Yes |
| resourceId | Int | Yes |
| address | String | Yes |
| currencyAmount | String | Yes |
| currencyAmountValue | Decimal | Yes |
| resourceAmount | String | Yes |
| resourceAmountValue | Decimal | Yes |
| timestamp | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | WalletCountAggregateOutputType | No |
| _avg | WalletAvgAggregateOutputType | No |
| _sum | WalletSumAggregateOutputType | No |
| _min | WalletMinAggregateOutputType | No |
| _max | WalletMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| address | String | Yes |
| _count | WalletCountAggregateOutputType | No |
| _avg | WalletAvgAggregateOutputType | No |
| _sum | WalletSumAggregateOutputType | No |
| _min | WalletMinAggregateOutputType | No |
| _max | WalletMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RealmCountAggregateOutputType | No |
| _avg | RealmAvgAggregateOutputType | No |
| _sum | RealmSumAggregateOutputType | No |
| _min | RealmMinAggregateOutputType | No |
| _max | RealmMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| name | String | No |
| owner | String | No |
| bridgedOwner | String | No |
| ownerL2 | String | No |
| settledOwner | String | No |
| wonder | String | No |
| rarityRank | Int | Yes |
| rarityScore | Float | Yes |
| imageUrl | String | Yes |
| orderType | OrderType | No |
| lastAttacked | DateTime | No |
| lastClaimTime | DateTime | No |
| lastTick | DateTime | No |
| lastVaultTime | DateTime | No |
| longitude | Float | Yes |
| latitude | Float | Yes |
| _count | RealmCountAggregateOutputType | No |
| _avg | RealmAvgAggregateOutputType | No |
| _sum | RealmSumAggregateOutputType | No |
| _min | RealmMinAggregateOutputType | No |
| _max | RealmMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BuildingCountAggregateOutputType | No |
| _avg | BuildingAvgAggregateOutputType | No |
| _sum | BuildingSumAggregateOutputType | No |
| _min | BuildingMinAggregateOutputType | No |
| _max | BuildingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| buildingId | Int | Yes |
| realmId | Int | No |
| eventId | String | Yes |
| buildingIntegrity | Int | Yes |
| builds | String | No |
| _count | BuildingCountAggregateOutputType | No |
| _avg | BuildingAvgAggregateOutputType | No |
| _sum | BuildingSumAggregateOutputType | No |
| _min | BuildingMinAggregateOutputType | No |
| _max | BuildingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FoodCountAggregateOutputType | No |
| _avg | FoodAvgAggregateOutputType | No |
| _sum | FoodSumAggregateOutputType | No |
| _min | FoodMinAggregateOutputType | No |
| _max | FoodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| buildingId | Int | Yes |
| eventId | String | Yes |
| qty | Int | Yes |
| harvests | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | FoodCountAggregateOutputType | No |
| _avg | FoodAvgAggregateOutputType | No |
| _sum | FoodSumAggregateOutputType | No |
| _min | FoodMinAggregateOutputType | No |
| _max | FoodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RelicCountAggregateOutputType | No |
| _avg | RelicAvgAggregateOutputType | No |
| _sum | RelicSumAggregateOutputType | No |
| _min | RelicMinAggregateOutputType | No |
| _max | RelicMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| heldByRealm | Int | Yes |
| _count | RelicCountAggregateOutputType | No |
| _avg | RelicAvgAggregateOutputType | No |
| _sum | RelicSumAggregateOutputType | No |
| _min | RelicMinAggregateOutputType | No |
| _max | RelicMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BuildingRealmTraitConstraintCountAggregateOutputType | No |
| _avg | BuildingRealmTraitConstraintAvgAggregateOutputType | No |
| _sum | BuildingRealmTraitConstraintSumAggregateOutputType | No |
| _min | BuildingRealmTraitConstraintMinAggregateOutputType | No |
| _max | BuildingRealmTraitConstraintMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | Yes |
| traitType | RealmTraitType | Yes |
| max | Int | Yes |
| _count | BuildingRealmTraitConstraintCountAggregateOutputType | No |
| _avg | BuildingRealmTraitConstraintAvgAggregateOutputType | No |
| _sum | BuildingRealmTraitConstraintSumAggregateOutputType | No |
| _min | BuildingRealmTraitConstraintMinAggregateOutputType | No |
| _max | BuildingRealmTraitConstraintMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ResourceCountAggregateOutputType | No |
| _avg | ResourceAvgAggregateOutputType | No |
| _sum | ResourceSumAggregateOutputType | No |
| _min | ResourceMinAggregateOutputType | No |
| _max | ResourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resourceId | Int | Yes |
| realmId | Int | No |
| level | Int | Yes |
| upgrades | String | No |
| _count | ResourceCountAggregateOutputType | No |
| _avg | ResourceAvgAggregateOutputType | No |
| _sum | ResourceSumAggregateOutputType | No |
| _min | ResourceMinAggregateOutputType | No |
| _max | ResourceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LaborCountAggregateOutputType | No |
| _avg | LaborAvgAggregateOutputType | No |
| _sum | LaborSumAggregateOutputType | No |
| _min | LaborMinAggregateOutputType | No |
| _max | LaborMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| resourceId | Int | Yes |
| vaultBalance | DateTime | No |
| balance | DateTime | No |
| lastUpdate | DateTime | No |
| lastEventId | String | No |
| qtyBuilt | Int | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | LaborCountAggregateOutputType | No |
| _avg | LaborAvgAggregateOutputType | No |
| _sum | LaborSumAggregateOutputType | No |
| _min | LaborMinAggregateOutputType | No |
| _max | LaborMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | WalletBalanceCountAggregateOutputType | No |
| _avg | WalletBalanceAvgAggregateOutputType | No |
| _sum | WalletBalanceSumAggregateOutputType | No |
| _min | WalletBalanceMinAggregateOutputType | No |
| _max | WalletBalanceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| address | String | Yes |
| tokenId | Int | Yes |
| amount | String | Yes |
| lastEventId | String | No |
| _count | WalletBalanceCountAggregateOutputType | No |
| _avg | WalletBalanceAvgAggregateOutputType | No |
| _sum | WalletBalanceSumAggregateOutputType | No |
| _min | WalletBalanceMinAggregateOutputType | No |
| _max | WalletBalanceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RealmTraitCountAggregateOutputType | No |
| _avg | RealmTraitAvgAggregateOutputType | No |
| _sum | RealmTraitSumAggregateOutputType | No |
| _min | RealmTraitMinAggregateOutputType | No |
| _max | RealmTraitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | Yes |
| qty | Int | Yes |
| realmId | Int | Yes |
| _count | RealmTraitCountAggregateOutputType | No |
| _avg | RealmTraitAvgAggregateOutputType | No |
| _sum | RealmTraitSumAggregateOutputType | No |
| _min | RealmTraitMinAggregateOutputType | No |
| _max | RealmTraitMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TroopCountAggregateOutputType | No |
| _avg | TroopAvgAggregateOutputType | No |
| _sum | TroopSumAggregateOutputType | No |
| _min | TroopMinAggregateOutputType | No |
| _max | TroopMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| troopId | Int | Yes |
| index | Int | Yes |
| type | Int | Yes |
| tier | Int | Yes |
| building | Int | Yes |
| agility | Int | Yes |
| attack | Int | Yes |
| armor | Int | Yes |
| vitality | Int | Yes |
| wisdom | Int | Yes |
| squadSlot | Int | Yes |
| timestamp | DateTime | No |
| _count | TroopCountAggregateOutputType | No |
| _avg | TroopAvgAggregateOutputType | No |
| _sum | TroopSumAggregateOutputType | No |
| _min | TroopMinAggregateOutputType | No |
| _max | TroopMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DesiegeCountAggregateOutputType | No |
| _avg | DesiegeAvgAggregateOutputType | No |
| _sum | DesiegeSumAggregateOutputType | No |
| _min | DesiegeMinAggregateOutputType | No |
| _max | DesiegeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| gameId | Int | Yes |
| winner | Int | No |
| attackedTokens | Int | No |
| defendedTokens | Int | No |
| damageInflicted | Int | No |
| eventIndexed | String | No |
| initialHealth | Int | No |
| startBlock | Int | Yes |
| endBlock | Int | Yes |
| startedOn | DateTime | No |
| _count | DesiegeCountAggregateOutputType | No |
| _avg | DesiegeAvgAggregateOutputType | No |
| _sum | DesiegeSumAggregateOutputType | No |
| _min | DesiegeMinAggregateOutputType | No |
| _max | DesiegeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DesiegeActionCountAggregateOutputType | No |
| _avg | DesiegeActionAvgAggregateOutputType | No |
| _sum | DesiegeActionSumAggregateOutputType | No |
| _min | DesiegeActionMinAggregateOutputType | No |
| _max | DesiegeActionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| gameId | Int | Yes |
| account | String | Yes |
| amount | Int | Yes |
| amountBoosted | Int | Yes |
| tokenOffset | Int | Yes |
| _count | DesiegeActionCountAggregateOutputType | No |
| _avg | DesiegeActionAvgAggregateOutputType | No |
| _sum | DesiegeActionSumAggregateOutputType | No |
| _min | DesiegeActionMinAggregateOutputType | No |
| _max | DesiegeActionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EventCountAggregateOutputType | No |
| _avg | EventAvgAggregateOutputType | No |
| _sum | EventSumAggregateOutputType | No |
| _min | EventMinAggregateOutputType | No |
| _max | EventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | String | Yes |
| blockNumber | Int | Yes |
| transactionNumber | Int | Yes |
| chainId | String | Yes |
| contract | String | Yes |
| name | String | Yes |
| parameters | String | No |
| keys | String | No |
| timestamp | DateTime | Yes |
| txHash | String | Yes |
| status | Int | Yes |
| _count | EventCountAggregateOutputType | No |
| _avg | EventAvgAggregateOutputType | No |
| _sum | EventSumAggregateOutputType | No |
| _min | EventMinAggregateOutputType | No |
| _max | EventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LastIndexedEventCountAggregateOutputType | No |
| _min | LastIndexedEventMinAggregateOutputType | No |
| _max | LastIndexedEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | Yes |
| eventId | String | Yes |
| _count | LastIndexedEventCountAggregateOutputType | No |
| _min | LastIndexedEventMinAggregateOutputType | No |
| _max | LastIndexedEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LoreEntityCountAggregateOutputType | No |
| _avg | LoreEntityAvgAggregateOutputType | No |
| _sum | LoreEntitySumAggregateOutputType | No |
| _min | LoreEntityMinAggregateOutputType | No |
| _max | LoreEntityMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| owner | String | No |
| ownerDisplayName | String | No |
| kind | Int | Yes |
| eventIndexed | String | No |
| _count | LoreEntityCountAggregateOutputType | No |
| _avg | LoreEntityAvgAggregateOutputType | No |
| _sum | LoreEntitySumAggregateOutputType | No |
| _min | LoreEntityMinAggregateOutputType | No |
| _max | LoreEntityMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LoreEntityRevisionCountAggregateOutputType | No |
| _avg | LoreEntityRevisionAvgAggregateOutputType | No |
| _sum | LoreEntityRevisionSumAggregateOutputType | No |
| _min | LoreEntityRevisionMinAggregateOutputType | No |
| _max | LoreEntityRevisionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| revisionNumber | Int | Yes |
| arweaveId | String | Yes |
| title | String | No |
| markdown | String | No |
| excerpt | String | No |
| media_url | String | No |
| createdAt | DateTime | No |
| entityId | Int | Yes |
| eventIndexed | String | No |
| _count | LoreEntityRevisionCountAggregateOutputType | No |
| _avg | LoreEntityRevisionAvgAggregateOutputType | No |
| _sum | LoreEntityRevisionSumAggregateOutputType | No |
| _min | LoreEntityRevisionMinAggregateOutputType | No |
| _max | LoreEntityRevisionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LorePOICountAggregateOutputType | No |
| _avg | LorePOIAvgAggregateOutputType | No |
| _sum | LorePOISumAggregateOutputType | No |
| _min | LorePOIMinAggregateOutputType | No |
| _max | LorePOIMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| assetType | String | No |
| _count | LorePOICountAggregateOutputType | No |
| _avg | LorePOIAvgAggregateOutputType | No |
| _sum | LorePOISumAggregateOutputType | No |
| _min | LorePOIMinAggregateOutputType | No |
| _max | LorePOIMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LorePropCountAggregateOutputType | No |
| _avg | LorePropAvgAggregateOutputType | No |
| _sum | LorePropSumAggregateOutputType | No |
| _min | LorePropMinAggregateOutputType | No |
| _max | LorePropMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| _count | LorePropCountAggregateOutputType | No |
| _avg | LorePropAvgAggregateOutputType | No |
| _sum | LorePropSumAggregateOutputType | No |
| _min | LorePropMinAggregateOutputType | No |
| _max | LorePropMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LorePoisOnEntityRevisionsCountAggregateOutputType | No |
| _avg | LorePoisOnEntityRevisionsAvgAggregateOutputType | No |
| _sum | LorePoisOnEntityRevisionsSumAggregateOutputType | No |
| _min | LorePoisOnEntityRevisionsMinAggregateOutputType | No |
| _max | LorePoisOnEntityRevisionsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| entityRevisionId | Int | Yes |
| poiId | Int | Yes |
| assetId | String | No |
| _count | LorePoisOnEntityRevisionsCountAggregateOutputType | No |
| _avg | LorePoisOnEntityRevisionsAvgAggregateOutputType | No |
| _sum | LorePoisOnEntityRevisionsSumAggregateOutputType | No |
| _min | LorePoisOnEntityRevisionsMinAggregateOutputType | No |
| _max | LorePoisOnEntityRevisionsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LorePropsOnEntityRevisionsCountAggregateOutputType | No |
| _avg | LorePropsOnEntityRevisionsAvgAggregateOutputType | No |
| _sum | LorePropsOnEntityRevisionsSumAggregateOutputType | No |
| _min | LorePropsOnEntityRevisionsMinAggregateOutputType | No |
| _max | LorePropsOnEntityRevisionsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| entityRevisionId | Int | Yes |
| propId | Int | Yes |
| value | String | No |
| _count | LorePropsOnEntityRevisionsCountAggregateOutputType | No |
| _avg | LorePropsOnEntityRevisionsAvgAggregateOutputType | No |
| _sum | LorePropsOnEntityRevisionsSumAggregateOutputType | No |
| _min | LorePropsOnEntityRevisionsMinAggregateOutputType | No |
| _max | LorePropsOnEntityRevisionsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ExchangeRateCountAggregateOutputType | No |
| _avg | ExchangeRateAvgAggregateOutputType | No |
| _sum | ExchangeRateSumAggregateOutputType | No |
| _min | ExchangeRateMinAggregateOutputType | No |
| _max | ExchangeRateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | Yes |
| hour | Int | Yes |
| tokenId | Int | Yes |
| amount | String | Yes |
| buyAmount | String | Yes |
| sellAmount | String | Yes |
| currencyReserve | String | Yes |
| tokenReserve | String | Yes |
| lpAmount | String | Yes |
| _count | ExchangeRateCountAggregateOutputType | No |
| _avg | ExchangeRateAvgAggregateOutputType | No |
| _sum | ExchangeRateSumAggregateOutputType | No |
| _min | ExchangeRateMinAggregateOutputType | No |
| _max | ExchangeRateMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RealmHistoryCountAggregateOutputType | No |
| _avg | RealmHistoryAvgAggregateOutputType | No |
| _sum | RealmHistorySumAggregateOutputType | No |
| _min | RealmHistoryMinAggregateOutputType | No |
| _max | RealmHistoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | String | Yes |
| eventType | String | Yes |
| realmId | Int | Yes |
| realmOwner | String | Yes |
| realmName | String | Yes |
| realmOrder | OrderType | No |
| data | Json | Yes |
| timestamp | DateTime | Yes |
| transactionHash | String | Yes |
| _count | RealmHistoryCountAggregateOutputType | No |
| _avg | RealmHistoryAvgAggregateOutputType | No |
| _sum | RealmHistorySumAggregateOutputType | No |
| _min | RealmHistoryMinAggregateOutputType | No |
| _max | RealmHistoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CombatHistoryCountAggregateOutputType | No |
| _avg | CombatHistoryAvgAggregateOutputType | No |
| _sum | CombatHistorySumAggregateOutputType | No |
| _min | CombatHistoryMinAggregateOutputType | No |
| _max | CombatHistoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | String | Yes |
| eventType | String | Yes |
| attackRealmId | Int | Yes |
| attackRealmOwner | String | Yes |
| attackSquad | Json | Yes |
| defendRealmId | Int | Yes |
| defendRealmOwner | String | Yes |
| defendSquad | Json | Yes |
| timestamp | DateTime | Yes |
| transactionHash | String | Yes |
| outcome | Int | Yes |
| attackType | Int | Yes |
| hitPoints | Int | Yes |
| _count | CombatHistoryCountAggregateOutputType | No |
| _avg | CombatHistoryAvgAggregateOutputType | No |
| _sum | CombatHistorySumAggregateOutputType | No |
| _min | CombatHistoryMinAggregateOutputType | No |
| _max | CombatHistoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ResourceTransferCountAggregateOutputType | No |
| _avg | ResourceTransferAvgAggregateOutputType | No |
| _sum | ResourceTransferSumAggregateOutputType | No |
| _min | ResourceTransferMinAggregateOutputType | No |
| _max | ResourceTransferMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | Yes |
| eventId | String | Yes |
| blockNumber | Int | Yes |
| transactionNumber | Int | Yes |
| fromAddress | String | Yes |
| toAddress | String | Yes |
| amount | String | Yes |
| amountValue | Decimal | Yes |
| transactionHash | String | Yes |
| timestamp | DateTime | Yes |
| _count | ResourceTransferCountAggregateOutputType | No |
| _avg | ResourceTransferAvgAggregateOutputType | No |
| _sum | ResourceTransferSumAggregateOutputType | No |
| _min | ResourceTransferMinAggregateOutputType | No |
| _max | ResourceTransferMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ArmyCountAggregateOutputType | No |
| _avg | ArmyAvgAggregateOutputType | No |
| _sum | ArmySumAggregateOutputType | No |
| _min | ArmyMinAggregateOutputType | No |
| _max | ArmyMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| armyId | Int | Yes |
| destinationRealmId | Int | Yes |
| destinationArrivalTime | DateTime | No |
| armyPacked | Int | Yes |
| lastAttacked | DateTime | No |
| xp | Int | Yes |
| level | Int | Yes |
| callSign | Int | Yes |
| lightCavalryQty | Int | Yes |
| lightCavalryHealth | Int | Yes |
| heavyCavalryQty | Int | Yes |
| heavyCavalryHealth | Int | Yes |
| archerQty | Int | Yes |
| archerHealth | Int | Yes |
| longbowQty | Int | Yes |
| longbowHealth | Int | Yes |
| mageQty | Int | Yes |
| mageHealth | Int | Yes |
| arcanistQty | Int | Yes |
| arcanistHealth | Int | Yes |
| lightInfantryQty | Int | Yes |
| lightInfantryHealth | Int | Yes |
| heavyInfantryQty | Int | Yes |
| heavyInfantryHealth | Int | Yes |
| _count | ArmyCountAggregateOutputType | No |
| _avg | ArmyAvgAggregateOutputType | No |
| _sum | ArmySumAggregateOutputType | No |
| _min | ArmyMinAggregateOutputType | No |
| _max | ArmyMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TravelCountAggregateOutputType | No |
| _avg | TravelAvgAggregateOutputType | No |
| _sum | TravelSumAggregateOutputType | No |
| _min | TravelMinAggregateOutputType | No |
| _max | TravelMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| contractId | Int | Yes |
| tokenId | Int | Yes |
| nestedId | Int | Yes |
| locationContractId | Int | Yes |
| locationTokenId | Int | Yes |
| locationNestedId | Int | Yes |
| destinationContractId | Int | Yes |
| destinationTokenId | Int | Yes |
| destinationNestedId | Int | Yes |
| destinationArrivalTime | DateTime | Yes |
| timestamp | DateTime | Yes |
| _count | TravelCountAggregateOutputType | No |
| _avg | TravelAvgAggregateOutputType | No |
| _sum | TravelSumAggregateOutputType | No |
| _min | TravelMinAggregateOutputType | No |
| _max | TravelMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ExchangeEventCountAggregateOutputType | No |
| _avg | ExchangeEventAvgAggregateOutputType | No |
| _sum | ExchangeEventSumAggregateOutputType | No |
| _min | ExchangeEventMinAggregateOutputType | No |
| _max | ExchangeEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | Yes |
| type | ExchangeEventType | Yes |
| resourceId | Int | Yes |
| address | String | Yes |
| currencyAmount | String | Yes |
| currencyAmountValue | Decimal | Yes |
| resourceAmount | String | Yes |
| resourceAmountValue | Decimal | Yes |
| timestamp | DateTime | Yes |
| _count | ExchangeEventCountAggregateOutputType | No |
| _avg | ExchangeEventAvgAggregateOutputType | No |
| _sum | ExchangeEventSumAggregateOutputType | No |
| _min | ExchangeEventMinAggregateOutputType | No |
| _max | ExchangeEventMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmsL1 | Int | Yes |
| realmsL2 | Int | Yes |
| realmsSettled | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| address | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| Name | Type | Nullable |
|---|---|---|
| buildings | Int | Yes |
| resources | Int | Yes |
| relicsOwned | Int | Yes |
| traits | Int | Yes |
| squad | Int | Yes |
| ownArmies | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| name | Int | Yes |
| owner | Int | Yes |
| bridgedOwner | Int | Yes |
| ownerL2 | Int | Yes |
| settledOwner | Int | Yes |
| wonder | Int | Yes |
| rarityRank | Int | Yes |
| rarityScore | Int | Yes |
| imageUrl | Int | Yes |
| orderType | Int | Yes |
| lastAttacked | Int | Yes |
| lastClaimTime | Int | Yes |
| lastTick | Int | Yes |
| lastVaultTime | Int | Yes |
| longitude | Int | Yes |
| latitude | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| realmId | Float | No |
| rarityRank | Float | No |
| rarityScore | Float | No |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| rarityRank | Int | No |
| rarityScore | Float | No |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | No |
| owner | String | No |
| bridgedOwner | String | No |
| ownerL2 | String | No |
| settledOwner | String | No |
| wonder | String | No |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | No |
| lastAttacked | DateTime | No |
| lastClaimTime | DateTime | No |
| lastTick | DateTime | No |
| lastVaultTime | DateTime | No |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| name | String | No |
| owner | String | No |
| bridgedOwner | String | No |
| ownerL2 | String | No |
| settledOwner | String | No |
| wonder | String | No |
| rarityRank | Int | No |
| rarityScore | Float | No |
| imageUrl | String | No |
| orderType | OrderType | No |
| lastAttacked | DateTime | No |
| lastClaimTime | DateTime | No |
| lastTick | DateTime | No |
| lastVaultTime | DateTime | No |
| longitude | Float | No |
| latitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| buildingId | Int | Yes |
| realmId | Int | Yes |
| eventId | Int | Yes |
| buildingIntegrity | Int | Yes |
| builds | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| buildingId | Float | No |
| realmId | Float | No |
| buildingIntegrity | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| buildingId | Int | No |
| realmId | Int | No |
| buildingIntegrity | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| buildingId | Int | No |
| realmId | Int | No |
| eventId | String | No |
| buildingIntegrity | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| buildingId | Int | No |
| realmId | Int | No |
| eventId | String | No |
| buildingIntegrity | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| buildingId | Int | Yes |
| eventId | Int | Yes |
| qty | Int | Yes |
| harvests | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| realmId | Float | No |
| buildingId | Float | No |
| qty | Float | No |
| harvests | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| buildingId | Int | No |
| qty | Int | No |
| harvests | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| buildingId | Int | No |
| eventId | String | No |
| qty | Int | No |
| harvests | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| buildingId | Int | No |
| eventId | String | No |
| qty | Int | No |
| harvests | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| heldByRealm | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | Float | No |
| heldByRealm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| heldByRealm | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| heldByRealm | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| heldByRealm | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | Yes |
| traitType | Int | Yes |
| max | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Float | No |
| max | Float | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| max | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| traitType | RealmTraitType | No |
| max | Int | No |
| Name | Type | Nullable |
|---|---|---|
| buildingId | Int | No |
| traitType | RealmTraitType | No |
| max | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| resourceId | Int | Yes |
| realmId | Int | Yes |
| level | Int | Yes |
| upgrades | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| resourceId | Float | No |
| realmId | Float | No |
| level | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| realmId | Int | No |
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| realmId | Int | No |
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| resourceId | Int | No |
| realmId | Int | No |
| level | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| realmId | Int | Yes |
| resourceId | Int | Yes |
| vaultBalance | Int | Yes |
| balance | Int | Yes |
| lastUpdate | Int | Yes |
| lastEventId | Int | Yes |
| qtyBuilt | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| realmId | Float | No |
| resourceId | Float | No |
| qtyBuilt | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| resourceId | Int | No |
| qtyBuilt | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| resourceId | Int | No |
| vaultBalance | DateTime | No |
| balance | DateTime | No |
| lastUpdate | DateTime | No |
| lastEventId | String | No |
| qtyBuilt | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| resourceId | Int | No |
| vaultBalance | DateTime | No |
| balance | DateTime | No |
| lastUpdate | DateTime | No |
| lastEventId | String | No |
| qtyBuilt | Int | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| address | Int | Yes |
| tokenId | Int | Yes |
| amount | Int | Yes |
| lastEventId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| tokenId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| tokenId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| tokenId | Int | No |
| amount | String | No |
| lastEventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| address | String | No |
| tokenId | Int | No |
| amount | String | No |
| lastEventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| type | Int | Yes |
| qty | Int | Yes |
| realmId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| qty | Float | No |
| realmId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| qty | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| type | RealmTraitType | No |
| qty | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| troopId | Int | Yes |
| index | Int | Yes |
| type | Int | Yes |
| tier | Int | Yes |
| building | Int | Yes |
| agility | Int | Yes |
| attack | Int | Yes |
| armor | Int | Yes |
| vitality | Int | Yes |
| wisdom | Int | Yes |
| squadSlot | Int | Yes |
| timestamp | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | Float | No |
| troopId | Float | No |
| index | Float | No |
| type | Float | No |
| tier | Float | No |
| building | Float | No |
| agility | Float | No |
| attack | Float | No |
| armor | Float | No |
| vitality | Float | No |
| wisdom | Float | No |
| squadSlot | Float | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| troopId | Int | No |
| index | Int | No |
| type | Int | No |
| tier | Int | No |
| building | Int | No |
| agility | Int | No |
| attack | Int | No |
| armor | Int | No |
| vitality | Int | No |
| wisdom | Int | No |
| squadSlot | Int | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| gameId | Int | Yes |
| winner | Int | Yes |
| attackedTokens | Int | Yes |
| defendedTokens | Int | Yes |
| damageInflicted | Int | Yes |
| eventIndexed | Int | Yes |
| initialHealth | Int | Yes |
| startBlock | Int | Yes |
| endBlock | Int | Yes |
| startedOn | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| gameId | Float | No |
| winner | Float | No |
| attackedTokens | Float | No |
| defendedTokens | Float | No |
| damageInflicted | Float | No |
| initialHealth | Float | No |
| startBlock | Float | No |
| endBlock | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| winner | Int | No |
| attackedTokens | Int | No |
| defendedTokens | Int | No |
| damageInflicted | Int | No |
| initialHealth | Int | No |
| startBlock | Int | No |
| endBlock | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| winner | Int | No |
| attackedTokens | Int | No |
| defendedTokens | Int | No |
| damageInflicted | Int | No |
| eventIndexed | String | No |
| initialHealth | Int | No |
| startBlock | Int | No |
| endBlock | Int | No |
| startedOn | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| winner | Int | No |
| attackedTokens | Int | No |
| defendedTokens | Int | No |
| damageInflicted | Int | No |
| eventIndexed | String | No |
| initialHealth | Int | No |
| startBlock | Int | No |
| endBlock | Int | No |
| startedOn | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| gameId | Int | Yes |
| account | Int | Yes |
| amount | Int | Yes |
| amountBoosted | Int | Yes |
| tokenOffset | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| gameId | Float | No |
| amount | Float | No |
| amountBoosted | Float | No |
| tokenOffset | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| amount | Int | No |
| amountBoosted | Int | No |
| tokenOffset | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| account | String | No |
| amount | Int | No |
| amountBoosted | Int | No |
| tokenOffset | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| gameId | Int | No |
| account | String | No |
| amount | Int | No |
| amountBoosted | Int | No |
| tokenOffset | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | Int | Yes |
| blockNumber | Int | Yes |
| transactionNumber | Int | Yes |
| chainId | Int | Yes |
| contract | Int | Yes |
| name | Int | Yes |
| parameters | Int | Yes |
| keys | Int | Yes |
| timestamp | Int | Yes |
| txHash | Int | Yes |
| status | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| blockNumber | Float | No |
| transactionNumber | Float | No |
| status | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| status | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| chainId | String | No |
| contract | String | No |
| name | String | No |
| timestamp | DateTime | No |
| txHash | String | No |
| status | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| chainId | String | No |
| contract | String | No |
| name | String | No |
| timestamp | DateTime | No |
| txHash | String | No |
| status | Int | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | Int | Yes |
| eventId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| moduleName | String | No |
| eventId | String | No |
| Name | Type | Nullable |
|---|---|---|
| revisions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| owner | Int | Yes |
| ownerDisplayName | Int | Yes |
| kind | Int | Yes |
| eventIndexed | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| kind | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| kind | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| owner | String | No |
| ownerDisplayName | String | No |
| kind | Int | No |
| eventIndexed | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| owner | String | No |
| ownerDisplayName | String | No |
| kind | Int | No |
| eventIndexed | String | No |
| Name | Type | Nullable |
|---|---|---|
| pois | Int | Yes |
| props | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| revisionNumber | Int | Yes |
| arweaveId | Int | Yes |
| title | Int | Yes |
| markdown | Int | Yes |
| excerpt | Int | Yes |
| media_url | Int | Yes |
| createdAt | Int | Yes |
| entityId | Int | Yes |
| eventIndexed | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| revisionNumber | Float | No |
| entityId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| entityId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | No |
| markdown | String | No |
| excerpt | String | No |
| media_url | String | No |
| createdAt | DateTime | No |
| entityId | Int | No |
| eventIndexed | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| revisionNumber | Int | No |
| arweaveId | String | No |
| title | String | No |
| markdown | String | No |
| excerpt | String | No |
| media_url | String | No |
| createdAt | DateTime | No |
| entityId | Int | No |
| eventIndexed | String | No |
| Name | Type | Nullable |
|---|---|---|
| entities | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| assetType | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| assetType | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| assetType | String | No |
| Name | Type | Nullable |
|---|---|---|
| entities | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| entityRevisionId | Int | Yes |
| poiId | Int | Yes |
| assetId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| entityRevisionId | Float | No |
| poiId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| poiId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| poiId | Int | No |
| assetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| poiId | Int | No |
| assetId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| entityRevisionId | Int | Yes |
| propId | Int | Yes |
| value | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| entityRevisionId | Float | No |
| propId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| propId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| propId | Int | No |
| value | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| entityRevisionId | Int | No |
| propId | Int | No |
| value | String | No |
| Name | Type | Nullable |
|---|---|---|
| date | Int | Yes |
| hour | Int | Yes |
| tokenId | Int | Yes |
| amount | Int | Yes |
| buyAmount | Int | Yes |
| sellAmount | Int | Yes |
| currencyReserve | Int | Yes |
| tokenReserve | Int | Yes |
| lpAmount | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| hour | Float | No |
| tokenId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| hour | Int | No |
| tokenId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | No |
| hour | Int | No |
| tokenId | Int | No |
| amount | String | No |
| buyAmount | String | No |
| sellAmount | String | No |
| currencyReserve | String | No |
| tokenReserve | String | No |
| lpAmount | String | No |
| Name | Type | Nullable |
|---|---|---|
| date | String | No |
| hour | Int | No |
| tokenId | Int | No |
| amount | String | No |
| buyAmount | String | No |
| sellAmount | String | No |
| currencyReserve | String | No |
| tokenReserve | String | No |
| lpAmount | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | Int | Yes |
| eventType | Int | Yes |
| realmId | Int | Yes |
| realmOwner | Int | Yes |
| realmName | Int | Yes |
| realmOrder | Int | Yes |
| data | Int | Yes |
| timestamp | Int | Yes |
| transactionHash | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| realmId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| realmId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| realmId | Int | No |
| realmOwner | String | No |
| realmName | String | No |
| realmOrder | OrderType | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| realmId | Int | No |
| realmOwner | String | No |
| realmName | String | No |
| realmOrder | OrderType | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| eventId | Int | Yes |
| eventType | Int | Yes |
| attackRealmId | Int | Yes |
| attackRealmOwner | Int | Yes |
| attackSquad | Int | Yes |
| defendRealmId | Int | Yes |
| defendRealmOwner | Int | Yes |
| defendSquad | Int | Yes |
| timestamp | Int | Yes |
| transactionHash | Int | Yes |
| outcome | Int | Yes |
| attackType | Int | Yes |
| hitPoints | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| attackRealmId | Float | No |
| defendRealmId | Float | No |
| outcome | Float | No |
| attackType | Float | No |
| hitPoints | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| attackRealmId | Int | No |
| defendRealmId | Int | No |
| outcome | Int | No |
| attackType | Int | No |
| hitPoints | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| attackRealmId | Int | No |
| attackRealmOwner | String | No |
| defendRealmId | Int | No |
| defendRealmOwner | String | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| outcome | Int | No |
| attackType | Int | No |
| hitPoints | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| eventId | String | No |
| eventType | String | No |
| attackRealmId | Int | No |
| attackRealmOwner | String | No |
| defendRealmId | Int | No |
| defendRealmOwner | String | No |
| timestamp | DateTime | No |
| transactionHash | String | No |
| outcome | Int | No |
| attackType | Int | No |
| hitPoints | Int | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | Yes |
| eventId | Int | Yes |
| blockNumber | Int | Yes |
| transactionNumber | Int | Yes |
| fromAddress | Int | Yes |
| toAddress | Int | Yes |
| amount | Int | Yes |
| amountValue | Int | Yes |
| transactionHash | Int | Yes |
| timestamp | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Float | No |
| blockNumber | Float | No |
| transactionNumber | Float | No |
| amountValue | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| amountValue | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| fromAddress | String | No |
| toAddress | String | No |
| amount | String | No |
| amountValue | Decimal | No |
| transactionHash | String | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| eventId | String | No |
| blockNumber | Int | No |
| transactionNumber | Int | No |
| fromAddress | String | No |
| toAddress | String | No |
| amount | String | No |
| amountValue | Decimal | No |
| transactionHash | String | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | Yes |
| armyId | Int | Yes |
| destinationRealmId | Int | Yes |
| destinationArrivalTime | Int | Yes |
| armyPacked | Int | Yes |
| lastAttacked | Int | Yes |
| xp | Int | Yes |
| level | Int | Yes |
| callSign | Int | Yes |
| lightCavalryQty | Int | Yes |
| lightCavalryHealth | Int | Yes |
| heavyCavalryQty | Int | Yes |
| heavyCavalryHealth | Int | Yes |
| archerQty | Int | Yes |
| archerHealth | Int | Yes |
| longbowQty | Int | Yes |
| longbowHealth | Int | Yes |
| mageQty | Int | Yes |
| mageHealth | Int | Yes |
| arcanistQty | Int | Yes |
| arcanistHealth | Int | Yes |
| lightInfantryQty | Int | Yes |
| lightInfantryHealth | Int | Yes |
| heavyInfantryQty | Int | Yes |
| heavyInfantryHealth | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| realmId | Float | No |
| armyId | Float | No |
| destinationRealmId | Float | No |
| armyPacked | Float | No |
| xp | Float | No |
| level | Float | No |
| callSign | Float | No |
| lightCavalryQty | Float | No |
| lightCavalryHealth | Float | No |
| heavyCavalryQty | Float | No |
| heavyCavalryHealth | Float | No |
| archerQty | Float | No |
| archerHealth | Float | No |
| longbowQty | Float | No |
| longbowHealth | Float | No |
| mageQty | Float | No |
| mageHealth | Float | No |
| arcanistQty | Float | No |
| arcanistHealth | Float | No |
| lightInfantryQty | Float | No |
| lightInfantryHealth | Float | No |
| heavyInfantryQty | Float | No |
| heavyInfantryHealth | Float | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| armyId | Int | No |
| destinationRealmId | Int | No |
| armyPacked | Int | No |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | No |
| armyPacked | Int | No |
| lastAttacked | DateTime | No |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| realmId | Int | No |
| armyId | Int | No |
| destinationRealmId | Int | No |
| destinationArrivalTime | DateTime | No |
| armyPacked | Int | No |
| lastAttacked | DateTime | No |
| xp | Int | No |
| level | Int | No |
| callSign | Int | No |
| lightCavalryQty | Int | No |
| lightCavalryHealth | Int | No |
| heavyCavalryQty | Int | No |
| heavyCavalryHealth | Int | No |
| archerQty | Int | No |
| archerHealth | Int | No |
| longbowQty | Int | No |
| longbowHealth | Int | No |
| mageQty | Int | No |
| mageHealth | Int | No |
| arcanistQty | Int | No |
| arcanistHealth | Int | No |
| lightInfantryQty | Int | No |
| lightInfantryHealth | Int | No |
| heavyInfantryQty | Int | No |
| heavyInfantryHealth | Int | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | Int | Yes |
| contractId | Int | Yes |
| tokenId | Int | Yes |
| nestedId | Int | Yes |
| locationContractId | Int | Yes |
| locationTokenId | Int | Yes |
| locationNestedId | Int | Yes |
| destinationContractId | Int | Yes |
| destinationTokenId | Int | Yes |
| destinationNestedId | Int | Yes |
| destinationArrivalTime | Int | Yes |
| timestamp | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| contractId | Float | No |
| tokenId | Float | No |
| nestedId | Float | No |
| locationContractId | Float | No |
| locationTokenId | Float | No |
| locationNestedId | Float | No |
| destinationContractId | Float | No |
| destinationTokenId | Float | No |
| destinationNestedId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| contractId | Int | No |
| tokenId | Int | No |
| nestedId | Int | No |
| locationContractId | Int | No |
| locationTokenId | Int | No |
| locationNestedId | Int | No |
| destinationContractId | Int | No |
| destinationTokenId | Int | No |
| destinationNestedId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| contractId | Int | No |
| tokenId | Int | No |
| nestedId | Int | No |
| locationContractId | Int | No |
| locationTokenId | Int | No |
| locationNestedId | Int | No |
| destinationContractId | Int | No |
| destinationTokenId | Int | No |
| destinationNestedId | Int | No |
| destinationArrivalTime | DateTime | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| contractId | Int | No |
| tokenId | Int | No |
| nestedId | Int | No |
| locationContractId | Int | No |
| locationTokenId | Int | No |
| locationNestedId | Int | No |
| destinationContractId | Int | No |
| destinationTokenId | Int | No |
| destinationNestedId | Int | No |
| destinationArrivalTime | DateTime | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | Int | Yes |
| type | Int | Yes |
| resourceId | Int | Yes |
| address | Int | Yes |
| currencyAmount | Int | Yes |
| currencyAmountValue | Int | Yes |
| resourceAmount | Int | Yes |
| resourceAmountValue | Int | Yes |
| timestamp | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Float | No |
| currencyAmountValue | Decimal | No |
| resourceAmountValue | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| resourceId | Int | No |
| currencyAmountValue | Decimal | No |
| resourceAmountValue | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| type | ExchangeEventType | No |
| resourceId | Int | No |
| address | String | No |
| currencyAmount | String | No |
| currencyAmountValue | Decimal | No |
| resourceAmount | String | No |
| resourceAmountValue | Decimal | No |
| timestamp | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| eventId | String | No |
| type | ExchangeEventType | No |
| resourceId | Int | No |
| address | String | No |
| currencyAmount | String | No |
| currencyAmountValue | Decimal | No |
| resourceAmount | String | No |
| resourceAmountValue | Decimal | No |
| timestamp | DateTime | No |